Blazing Agents Python SDK
Build production agents in Python with a typed client for the Blazing Agents API.
The official Python SDK provides synchronous and asynchronous clients for the
Blazing Agents /v1 API. It supports CPython 3.11 and newer.
Features
- Typed Pydantic request and response models.
- Matching synchronous and asynchronous APIs.
- Agent, Workspace, Skill, Provider, Prompt, Memory, Session, Artifact, Task, usage, and Tenant management.
- Chat, text, and structured-object generation streams.
- Lazy pagination and binary transfers.
- Request correlation with configurable timeouts and observability.
Installation
pip install blazing-agents
Quick start
Create a Tenant API key in the Blazing Agents dashboard, then pass it to the
client or set BLAZING_AGENTS_API_KEY.
from blazing_agents import BlazingAgents
with BlazingAgents(api_key="ba_...") as client:
result = client.completion(
agent_id="ag_...",
prompt="Write a friendly welcome message.",
)
print(str(result))
Use AsyncBlazingAgents for asynchronous applications; it exposes the same
resources and generation methods.
Documentation
Read the Python SDK documentation for authentication, resource guides, generation and streaming, error handling, and the complete API reference.
Thinking levels
Configure thinking_level on Agent create or update. Omit it on update to
preserve the current selection; pass None for Provider default. Explicit
levels are strings, including custom values for Models with unknown capabilities.
Agent and Agent Version responses expose thinking_level, and restoring a
Version restores its level too. The async client provides the same methods.
capabilities = client.providers.get_thinking_levels(provider_id, model="gpt-5")
# capabilities.known distinguishes unknown metadata from known choices.
agent = client.agents.create(
name="Reasoner",
provider_id=provider_id,
model="openai/gpt-5",
thinking_level="high",
)
client.agents.update(agent.id, thinking_level=None)
Development
uv sync --locked
uv run ruff check .
uv run ruff format --check .
uv run python scripts/run_typechecks.py
uv run python scripts/run_tests.py
License
Interactive resend
Successful interactive exchanges are saved together. Failed or canceled execution leaves saved history unchanged, including the previous answer during regeneration; executed usage and Tool effects remain. Retain submitted text/images until success and resend edited or unchanged input through ordinary chat with a fresh message ID. Stop requests cancellation; a lost response can hide a saved exchange. Reuse the returned Session ID and load history normally on return. No outcome polling or automatic generation retry is needed. See the chatbot guide and working examples.
Release files for blazing-agents 0.3.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| blazing_agents-0.3.0.tar.gz | 117.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| blazing_agents-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 156.6 kB
Release files / blazing_agents-0.3.0.tar.gz
| Download URL | blazing_agents-0.3.0.tar.gz |
|---|---|
| Size | 117.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
60018a845b3cea7aacf9b8541b529f0c191a560214802c45b9a0de3049746cf5
|
|
BLAKE2b-256 checksum How to use checksums |
099741d3537699953d3803f38507aa38c6d65d476780960cc1d0dd4d20516002
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.
Transparency logRelease files / blazing_agents-0.3.0-py3-none-any.whl
| Download URL | blazing_agents-0.3.0-py3-none-any.whl |
|---|---|
| Size | 38.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
f67676a023996d58c2873f5ce5bc7df5e6b234b098f9e9e01f1300c5df530df0
|
|
BLAKE2b-256 checksum How to use checksums |
dbed9abf0636f64c400ca4edd78ecdb4a321b4f79f70cb1e1cdd80d06073e594
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 10, 2026.
Transparency log