Sogni Client for Python
An async Python SDK for image, video, audio, and LLM inference on the Sogni
Supernet. It follows the public surface and wire protocol of the TypeScript
sogni-client, while using Python naming conventions and async iterators.
The Python port is currently beta. Keep credentials in environment variables or your system keychain; never commit them to source control.
Official quickstart · Examples · Sogni API reference
Install
Install the latest beta directly from the official GitHub repository:
python -m pip install "sogni-client @ git+https://github.com/Sogni-AI/sogni-client-python.git@main"
For an editable source checkout:
git clone https://github.com/Sogni-AI/sogni-client-python.git
cd sogni-client-python
python -m pip install -e .
Python 3.10 or newer is required.
Create an image
import asyncio
import os
from sogni_client import SogniClient
async def main() -> None:
async with await SogniClient.create(api_key=os.environ["SOGNI_API_KEY"]) as sogni:
project = await sogni.projects.create(
type="image",
model_id="z_image_turbo_bf16",
positive_prompt="A tiny observatory above a sea of clouds",
negative_prompt="text, watermark",
number_of_media=1,
width=1024,
height=1024,
steps=8,
)
print(await project.wait_for_completion())
asyncio.run(main())
SogniClient.create() generates a unique application ID when one is not
provided. Pass app_id="..." when you deliberately need a stable socket
identity.
Edit an image with Krea 2 Identity Edit
Pass one or two local reference images through context_images. For two-image
edits, place the base scene first and the identity or detail reference second.
project = await sogni.projects.create(
type="image",
model_id="krea2_identity_edit_v1_2",
positive_prompt=(
"Change only the jacket to vivid sapphire blue. Preserve the exact "
"facial identity, expression, framing, background, and lighting."
),
number_of_media=1,
width=1024,
height=1024,
steps=10,
guidance=1,
token_type="spark",
context_images=["reference.png"],
)
print(await project.wait_for_completion(timeout=900))
The runnable example accepts one or two image paths and can also create a batch:
python examples/krea_identity_edit.py reference.png \
--prompt "Change only the jacket to vivid sapphire blue; preserve identity."
python examples/krea_identity_edit.py scene.png identity.png \
--prompt "Use the first image as the base scene and the second for identity." \
--count 4
Chat
Socket-backed completion:
result = await sogni.chat.completions.create(
model="qwen3.6-35b-a3b-gguf-iq4xs",
messages=[{"role": "user", "content": "Give me three visual concepts."}],
)
print(result["content"])
Hosted OpenAI-compatible completion:
result = await sogni.chat.hosted.create(
model="qwen3.6-35b-a3b-gguf-iq4xs",
messages=[{"role": "user", "content": "Describe a surreal album cover."}],
)
For streaming socket chat, pass stream=True and iterate over the returned
ChatStream with async for.
Durable workflows
workflow = await sogni.workflows.start(
input={"prompt": "Create a four-panel character turnaround"},
idempotency_key="turnaround-001",
)
async for event in sogni.workflows.stream_events(workflow["id"]):
print(event["event"], event["data"])
The client also exposes:
sogni.accountfor authentication, balances, rewards, transactions, and subscriptionssogni.projectsfor generation, uploads, model discovery, and estimatessogni.chatfor socket, hosted, tool, and durable-run APIssogni.workflowsandsogni.workflows.templatessogni.replayandsogni.stats
Python snake_case arguments are preferred. Common JavaScript-style aliases
remain accepted to simplify migration.
Resuming projects after a reconnect
Generation keeps running on the Supernet while your socket is down. A dropped
connection is a transport gap, not a failure: tracked projects stay alive, the
client reconnects with capped exponential backoff for as long as the session is
authenticated, and on every authenticated handshake it reconciles with the
server. Whatever the client missed is replayed through the normal project /
job events, so listeners attached before the gap keep receiving updates and
wait_for_completion() still resolves.
Projects the server knows about but this client does not (a restart, a second
client sharing the account, cleared local state) are rebuilt as tracked
Project instances with project.recovered is True. Their params are
reconstructed from the original request; asset inputs are not recoverable.
# Every reconciliation reports what changed. `snapshot` is the raw server view,
# for apps that keep their own project store.
sogni.projects.on("projectsSynced", lambda r: print(r["reason"], r["active"], r["lost"]))
# In-flight projects this client was not tracking; they are tracked now, so
# `project` / `job` events follow as usual.
sogni.projects.on("activeProjectsRecovered", lambda projects: ...)
# Projects that finished while this client was away, result URLs already resolved.
sogni.projects.on("completedProjectsRecovered", lambda projects: ...)
# Ask for a fresh reconciliation yourself, e.g. after waking from sleep.
await sogni.projects.sync()
A project the server no longer lists is looked up on the REST API (which only
stores finished projects) a few times before it is declared lost; it then fails
with an error where is_project_lost_error(error) is True. Apps that persist
project ids themselves can run the same lookup with
sogni.projects.resolve_missing(ids).
The same snapshot answers "is anything rendering elsewhere on this account?" —
sogni.projects.list_projects_elsewhere() returns those in-flight projects
read-only (appSource, status, model, per-job step counts). The socket
rate-limits it to 20 calls per 10s per account, so poll on the order of tens of
seconds.
Recovery is per app instance: the server hands projects back to the appId that
created them, so persist your appId and reuse it across restarts.
Sensitive content
job.is_nsfw means the server withheld the media: the render ran with the
Sensitive Content Filter on, a signal fired, and there is nothing to download.
When the artist turns the filter off the media is delivered and merely labelled
— that case reports job.nsfw_detected with job.nsfw_sources (prompt
and/or image), has a result_url like any other result, and leaves
job.is_nsfw false. Use job.has_result_media (or job.is_withheld) to decide
whether media exists, and the viewer's own filter setting to decide whether to
blur it.
Compatibility
This release tracks the current TypeScript source at 5.27.1. The
REST, WebSocket, and SSE contracts are covered by credential-free protocol
tests, including authentication refresh, uploads, project state recovery,
streaming chat, workflows, templates, replay, and the canonical 25 hosted-tool
schemas.
Current model and transport coverage includes LTX 2.5, MiniMax H3 in all four
tiers (Standard, 8-step Balanced, 4-step LightX2V Turbo, and the separate
FastH3 fastvideo-int8 Turbo engine), Seedance 2.5, Wan 3 and Wan 3.0 Enhanced,
RTX VSR, MiniMax Music 3, LoRA catalog discovery, queue start estimates,
live-benchmarked render/total time on cost quotes, in-flight project recovery
across reconnects, confirmed cancellation, and connection/workload attribution.
The Python API is async-first; AsyncSogniClient is an alias of
SogniClient, not a synchronous wrapper. Browser-only cookie coordination and
multi-tab behavior have no Python equivalent. Local image references are
uploaded with their detected MIME type, but the TypeScript client's optional
browser-side image resizing is not reproduced. All 25 canonical tool schemas
are exposed; the local project-backed executor handles the six direct media
generation tools, while the remaining tools run through the hosted or durable
chat APIs. Live, credentialed smoke tests are intentionally separate from the
default test suite.
Token authentication
sogni = await SogniClient.create(auth_type="token")
await sogni.set_tokens(token=access_token, refresh_token=refresh_token)
Username/password login and signing are available through sogni.account.login.
API-key use does not require storing a wallet password.
Development
python -m pip install -e '.[dev]'
pytest
ruff check sogni_client tests
ruff format --check sogni_client tests
python -m build
Live integration tests require explicit credentials and are not run by default.
Documentation
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 sogni_client-5.27.1.tar.gz.
File metadata
- Download URL: sogni_client-5.27.1.tar.gz
- Upload date:
- Size: 173.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3d8e2a100fe45d6ea9b6a8d56f2fcd1938fd48bbc8b7dce899f19b4f17e2935
|
|
| MD5 |
8ebba4ce5373a5735052909adc057ac4
|
|
| BLAKE2b-256 |
ecc9a7df7c84fcbbcc7068796708ba744537e8180f22340a5fd928f40a18773a
|
File details
Details for the file sogni_client-5.27.1-py3-none-any.whl.
File metadata
- Download URL: sogni_client-5.27.1-py3-none-any.whl
- Upload date:
- Size: 142.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9b86c400aace0c47bb997373e0f5a160866747629d85d3f9b6b20fc14f7446a
|
|
| MD5 |
cadf6ff529bf9389cf5abd9a91f997ac
|
|
| BLAKE2b-256 |
511366a76d86040613a2f306dc24cb4b18a5fedd6ad82d41247c221b84121d20
|