steerable-agent-runtime
Tier 3 runtime for the Steerable framework.
Provides four orthogonal pluggable adapters:
LLMProvider— chat-completion / streaming / tool-call abstraction, with reference implementations for OpenAI-compatible servers (covers OpenAI, Ollama, vLLM, SiliconFlow, etc.) and Anthropic native.ToolRouter— in-process tool registry. Auto-classifies tools intoToolModes usingsteerable_agent_harness.policy, supports per-tool permission overrides, and dispatchesToolCall→ToolResult.StorageAdapter— persistence interface forAgentSession,ChatMessage,ChatAgent, andHarnessTrace + spans + events. Reference impls: in-memory (default for sidecar/dev) and SQLAlchemy (for hosted backends).TransportAdapter— wire format.FastAPISseTransportexports SSE for hosted setups;StdioJsonRpcTransportpowers the steerable-sidecar.
The runtime is Python only by design — frontends never depend on it directly. Browsers/Electron consume runtime output via either the SSE transport (over HTTP) or the stdio JSON-RPC transport (sidecar pattern).
Install
pip install steerable-agent-runtime[all]
Selectively install just the bits you need:
pip install "steerable-agent-runtime[openai]"
pip install "steerable-agent-runtime[anthropic]"
pip install "steerable-agent-runtime[sqlalchemy]"
pip install "steerable-agent-runtime[fastapi]"
CoreLoop execution is the Rust engine. steerable-agent-runtime-native
is a required dependency of this package (same lockstep version). A
missing wheel fails import or CoreLoop.run(); there is no Python
engine fallback.
pip install steerable-agent-runtime-native
Release files for steerable-agent-runtime 0.6.38
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| steerable_agent_runtime-0.6.38.tar.gz | 508.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| steerable_agent_runtime-0.6.38-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 872.8 kB
Release files / steerable_agent_runtime-0.6.38.tar.gz
| Download URL | steerable_agent_runtime-0.6.38.tar.gz |
|---|---|
| Size | 508.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8d99f3ffdce7ebe5d0592b750f4699f8537b7eeb049a28f87500f50cb0a12788
|
|
BLAKE2b-256 checksum How to use checksums |
51b2ff4fbf30853474cb8d01db99ccdee699cc0a0589cfaf895408e6a968a1d0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / steerable_agent_runtime-0.6.38-py3-none-any.whl
| Download URL | steerable_agent_runtime-0.6.38-py3-none-any.whl |
|---|---|
| Size | 363.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c831acf06c74fe5a127f0790c57d3e15f3d3edf11039ca917b2acc9789baadb1
|
|
BLAKE2b-256 checksum How to use checksums |
d70fdaf6e6853eab530d10659f64dc651bd4f79ac717e75fd040c55645d422fd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|