model sdk built by the 9th ditrict at tooig
Project description
nineth-sdk
nineth-sdk is the lightweight Python SDK for the Rooster agent API.
Install
pip install nineth
export NINETH_API_KEY="your-shared-api-key"
60-Second Start
from nineth import NinethClient
with NinethClient() as client:
result = client.invoke(
"Give me a tight market update on BTC.",
services=False,
cache=False,
)
print(result["final_response"])
That works because:
- the SDK defaults to
https://weirdpablo--rooster-api.modal.run - the SDK reads
NINETH_API_KEYautomatically
Quick Start
import os
from nineth import NinethClient
client = NinethClient(api_key=os.environ["NINETH_API_KEY"])
response = client.invoke(
"Give me a terse overview of crude oil today.",
model_name="district/1984-m3-0317",
services=False,
cache=False,
)
print(response["final_response"])
client.close()
Streaming
import os
from nineth import NinethClient
with NinethClient(api_key=os.environ["NINETH_API_KEY"]) as client:
for event in client.stream(
"Research Nvidia's latest earnings and summarize the key points.",
services=True,
service_names=["search_web", "read"],
cache=True,
max_iterations=6,
):
print(event["type"], event["data"])
Health Check
from nineth import NinethClient
with NinethClient() as client:
print(client.health())
health() does not require authentication.
The SDK yields parsed SSE payloads as dictionaries. Typical event types are:
acceptedrun_startedmodel_startmodel_deltamodel_responseservice_callservice_responseresultcompletederror
Async Client
import asyncio
import os
from nineth import AsyncNinethClient
async def main():
async with AsyncNinethClient(api_key=os.environ["NINETH_API_KEY"]) as client:
response = await client.invoke(
"Tell me whether gold is trending or ranging.",
services=False,
cache=False,
)
print(response["final_response"])
asyncio.run(main())
Payload Options
The SDK maps directly to the API request body. The most important options are:
task_inputmodel_nameservicesservice_namescachemax_iterationsreasoning_effortcontinuousimagessystem_prompt
Unknown request keys can be passed through with extra={...} in build_payload(...).
What You Get Back
invoke() returns a dictionary like:
{
"process_id": "...",
"model_name": "district/1984-m3-0317",
"final_response": "...",
"usage": {...},
"thinking": [...],
"service_calls": [...],
"service_responses": [...],
"iterations": 2,
"events": [...],
}
stream() yields one dictionary per SSE event, for example:
{
"type": "model_response",
"timestamp": "2026-04-03T00:00:00+00:00",
"process_id": "...",
"iteration": 1,
"data": {
"visible_response": "..."
}
}
Authentication
Execution requests send the shared key in the X-API-Key header. The SDK reads it from:
- the
api_key=constructor argument - or the
NINETH_API_KEYenvironment variable
health() does not require authentication, but invoke() and stream() do.
Overriding The Endpoint
Use a different deployment like this:
from nineth import NinethClient
client = NinethClient(
base_url="https://your-other-deployment.modal.run",
api_key="your-shared-api-key",
)
Project details
Release history Release notifications | RSS feed
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 nineth-0.0.4.tar.gz.
File metadata
- Download URL: nineth-0.0.4.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46a9eccd458b28c23da0cb8af0bb87ec5fdb568d539abb17f504a1dabafd9df2
|
|
| MD5 |
378b6c2457a5c502c7718aa578b6b27d
|
|
| BLAKE2b-256 |
4c8b7aed3c63b17f1239c24a17236095fe3bc5d93224106da3517808ad166ca7
|
File details
Details for the file nineth-0.0.4-py3-none-any.whl.
File metadata
- Download URL: nineth-0.0.4-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a06f89bc4c9fb9636b62ff450a4fdc33990081a3c010c5b9e89e9c55ac68c59
|
|
| MD5 |
38d3e9a6131cfa8e3d0d020458442c35
|
|
| BLAKE2b-256 |
88478501b68c76045523c03216e39b0bff95bd3adfa3b2b70c460f4aec11feaf
|