# Download CloudSigma AI Studio SDK

Download the CloudSigma AI Studio SDK to manage workspace resources from Python or Go applications.

- **Python package:** SDK wheel, installation instructions, and a workspace-listing example.
- **Go package:** SDK source, dependency modules, installation instructions, and a workspace-listing example.

CloudSigma and MOI AI Studio share the SDK. The `moi_product_sdk` package name and Go module paths retain their original names. To connect to CloudSigma, configure the [endpoint and credentials](https://omnifabric.cloudsigma.com/docs/developer/endpoints-and-authentication.html.md) for the target workspace's region.

## Download release packages

The current stable version is `0.1.0`. Both the Python SDK and Go SDK are designed cross-platform and support Windows, macOS, and Linux environments:

| Language | Package | File Size | Requirements | OS | Download Link |
| :--- | :--- | :--- | :--- | :--- | :--- |
| **Python** | `cloudsigma-sdk-python-0.1.0.zip` | ~140 KB | Python >= 3.11 | Windows / macOS / Linux | [Download Python SDK](../../../assets/downloads/cloudsigma-sdk-python-0.1.0.zip) |
| **Go** | `cloudsigma-sdk-go-0.1.0.zip` | ~301 KB | Go >= 1.25.7 | Windows / macOS / Linux | [Download Go SDK](../../../assets/downloads/cloudsigma-sdk-go-0.1.0.zip) |

````{dropdown} Checksums (SHA-256)
After downloading, verify file integrity in your terminal:

```bash
# macOS / Linux
shasum -a 256 cloudsigma-sdk-python-0.1.0.zip
shasum -a 256 cloudsigma-sdk-go-0.1.0.zip

# Windows (PowerShell)
Get-FileHash cloudsigma-sdk-python-0.1.0.zip -Algorithm SHA256
Get-FileHash cloudsigma-sdk-go-0.1.0.zip -Algorithm SHA256
```

Official SHA-256 checksums:

- **Python SDK**: `3e247ee63c4c181dfb67ce37a5b6e1b81e5f4125402d09728847b4aca9cb6544`
- **Go SDK**: `6b9db69a737544f1ea1bcc26e90878b0cee8d5c69934d28586204073df48c529`
````

## Extract and verify installation

:::::{tab-set}
:sync-group: sdk-language

::::{tab-item} Python
:sync: python

After extraction, the package contains the built `moi_product_sdk-0.1.0-py3-none-any.whl` and minimal examples. Install and verify in a clean virtual environment:

```bash
unzip cloudsigma-sdk-python-0.1.0.zip
cd cloudsigma-sdk-python-0.1.0

# Create and activate an isolated environment
python3 -m venv .venv
source .venv/bin/activate  # On Windows run: .venv\Scripts\activate

# Install the wheel package
pip install moi_product_sdk-0.1.0-py3-none-any.whl

# Verify the installation
python3 -c "import moi_product_sdk as sdk; print(sdk.__name__, 'ready')"
```

::::

::::{tab-item} Go
:sync: go

After extraction, the package contains `go-sdk`, the dependent `product-model`, a preconfigured `go.work`, and sample code. No external remote private module proxy is required—build immediately upon extraction:

```bash
unzip cloudsigma-sdk-go-0.1.0.zip
cd cloudsigma-sdk-go-0.1.0

# Build the example to verify dependencies
go build -o list-workspaces ./examples/list_workspaces
```

::::

:::::

## Next steps

After installation and local verification, proceed to the quickstart to configure your access token and begin:

- [Use SDK to connect to a workspace](https://omnifabric.cloudsigma.com/docs/developer/quickstart/ai-studio/sdk.html.md)
- [Use AI Studio SDK by scenario](https://omnifabric.cloudsigma.com/docs/developer/sdk/ai-studio/index.html.md)
