Yandex AI Studio SDK
This Python library provides a simple and efficient software development kit (SDK) for interacting with Yandex Cloud AI Studio services. The SDK abstracts away the complexities of raw gRPC and REST calls, making it easier for developers to integrate cloud functionality into their applications seamlessly.
Features
Yandex AI Studio SDK offers a comprehensive set of high‑level abstractions that map directly to the capabilities exposed by Yandex Cloud. The current feature set includes:
- SpeechKit
- Speech To Text (speech recognition)
- Text To Speech (speech synthesis)
- Completions
- Text generation (completion) models with streaming support.
- Chat usage tracking, tool calls (function calling for example).
- Chat
- OpenAI‑compatible chat API (
sdk.chat) designed to work seamlessly with the rest of the Yandex AI Studio SDK. - Send and receive messages, stream responses, and work with tool calls in a unified way.
- OpenAI‑compatible text embeddings endpoint (
sdk.chat.text_embeddings).
- OpenAI‑compatible chat API (
- Files
- Upload, download, list and delete files stored in Yandex Cloud AI Studio.
- Image generation
- Generate images via YandexART models.
- Vision OCR
- Recognize text in images and PDFs (JPEG, PNG, PDF).
- Text embeddings
- Compute dense vector embeddings for arbitrary text.
- Text classifiers
- Run multi‑class, multi‑label and binary classifiers.
- Yandex Search API
- Generative, web, image and by image search.
- Wordstat keyword statistics: query volume trends, top queries, regional and device distribution.
- Search indexes
- Create, update, delete and query text, vector and hybrid search indexes.
Note: The Assistants, Threads, Runs, and Messages domains have been removed from the SDK. If you were using these features, please refer to the migration guide to Responses API.
Also there is some cross-domain functionality for features above:
- Batch processing
- Run long‑running batch tasks with automatic polling.
- Tools
- Function Tool for extending models with custom callable functions in Completions and Chat.
- Tuning
- Fine‑tune models with configurable optimizers, schedulers and other hyper‑parameters.
- Datasets
- Manage dataset lifecycle, upload data, validate schemas, and perform task‑type specific operations.
Additionally, Yandex AI Studio SDK offers:
- Authentication
- Automatic selection of authentication method (API key, IAM token, OAuth token, CLI, metadata service, etc.).
- Error handling & retries
- Rich exception hierarchy, retry policies, and configurable gRPC interceptors.
- Async & sync support
- Every high‑level service is available in both asynchronous and synchronous variants.
- LangChain integration
- Ready‑to‑use wrappers for LangChain (
.langchain()) with an optional extra installation.
- Ready‑to‑use wrappers for LangChain (
Installation
You can install the library via pip:
pip install yandex-ai-studio-sdk
SDK Reference
https://aistudio.yandex.ru/docs/ai-studio/sdk-ref/
Usage
Here's a basic example of how to use the SDK:
from yandex_ai_studio_sdk import AIStudio
sdk = AIStudio(folder_id="...", auth="<APIKey/IAMToken/SomethingElse>")
model = sdk.models.completions('yandexgpt')
model = model.configure(temperature=0.5)
result = model.run("foo")
for alternative in result:
print(alternative)
For more usage examples look into examples folder.
LangChain integration
To use LangChain integration, install yandex-ai-studio-sdk package with a langchain extra:
pip install yandex-ai-studio-sdk[langchain]
Usage example:
from yandex_ai_studio_sdk import AIStudio
from langchain_core.messages import AIMessage, HumanMessage
sdk = AIStudio(folder_id="...", auth="<APIKey/IAMToken/SomethingElse>")
model = sdk.models.completions('yandexgpt').langchain()
langchain_result = model.invoke([
HumanMessage(content="hello!"),
AIMessage(content="Hi there human!"),
HumanMessage(content="Meow!"),
])
For more LangChain integration examples look into examples/langchain folder.
CLI
The SDK ships a command-line tool for building vector search indexes from local files, S3-compatible storage, MediaWiki pages, and Confluence:
# Install base CLI (local files + Confluence)
pip install yandex-ai-studio-sdk
# With S3 / Yandex Object Storage support
pip install "yandex-ai-studio-sdk[cli-s3]"
# With Wikipedia / MediaWiki support
pip install "yandex-ai-studio-sdk[cli-wiki]"
yandex-ai-studio vector-stores local docs/*.pdf --name "My index"
See the full CLI reference in
src/yandex_ai_studio_sdk/cli/search_index/README.md.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yandex_ai_studio_sdk-0.22.1.tar.gz.
File metadata
- Download URL: yandex_ai_studio_sdk-0.22.1.tar.gz
- Upload date:
- Size: 212.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
python-requests/2.32.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af3b8e6b3e41d6755292588834e2bcbe09176b931c58ef083a8358017c331abc
|
|
| MD5 |
872ed9d6dc69f4ca4eaf0a276caa15b2
|
|
| BLAKE2b-256 |
387bcd9ca9ef10957a103bb5e6a6a6066c5f69787e4c84982b6ded8a9668791d
|
File details
Details for the file yandex_ai_studio_sdk-0.22.1-py3-none-any.whl.
File metadata
- Download URL: yandex_ai_studio_sdk-0.22.1-py3-none-any.whl
- Upload date:
- Size: 312.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
python-requests/2.32.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb787e3ae311f4ee7966f032071570aec55180451c6d04420be05565ac148f8c
|
|
| MD5 |
640a2b78f9a5e4f80ffbcb2c8f2d4ff9
|
|
| BLAKE2b-256 |
b1961075eb9c4510e6a677ef76adfc788877ef7a6e595a505c2779c785ab8f97
|