Download AI Studio SDK

The AI Studio SDK is used to manage workspace-scoped AI Studio resources in Go or Python applications. Official offline archives are currently provided for download and integration.

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

moi-product-sdk-python-0.1.0.zip

~139 KB

Python >= 3.11

Windows / macOS / Linux

Download Python SDK

Go

moi-product-sdk-go-0.1.0.zip

~300 KB

Go >= 1.25.7

Windows / macOS / Linux

Download Go SDK

Checksums (SHA-256)

After downloading, verify file integrity in your terminal:

# macOS / Linux
shasum -a 256 moi-product-sdk-python-0.1.0.zip
shasum -a 256 moi-product-sdk-go-0.1.0.zip

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

Official SHA-256 checksums:

  • Python SDK: 650f938189af5d95531a35a111cb211c31664a6b5527644d45762ffbec6aedb9

  • Go SDK: 632a82b02a1cbf75154afdce260ea3b6d8c5fdeaf20736bce80acb3828bd7498

Extract and verify installation

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:

unzip moi-product-sdk-python-0.1.0.zip -d moi-python-sdk
cd moi-python-sdk

# 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')"

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:

unzip moi-product-sdk-go-0.1.0.zip -d moi-go-sdk
cd moi-go-sdk

# Run the included example to verify dependency resolution
go run ./examples/list_workspaces

Next steps

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

Last updated on