steerable-sidecar
The portable Python entrypoint for the steerable framework. Designed to be spawned by an Electron / desktop host (or directly from a CLI) and addressed via stdio JSON-RPC 2.0.
Quick start
pip install steerable-sidecar
python -m steerable_sidecar
Or use the console script:
steerable-sidecar
The process:
- Initializes the in-memory storage and a default tool router.
- Prints the ready signal on stderr as a single line:
__SIDECAR_READY__:<json>matchingspec/sidecar/SidecarHealth. - Begins reading JSON-RPC frames from stdin (one frame per line).
- Writes responses and notifications to stdout.
See spec/sidecar/README.md for the full method/notification catalog.
Embedding
import asyncio
from steerable_sidecar import Sidecar
async def main() -> None:
sidecar = Sidecar()
sidecar.tools.register(my_tool)
await sidecar.serve()
asyncio.run(main())
Release files for steerable-sidecar 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 | |
|---|---|---|---|
| steerable_sidecar-0.3.0.tar.gz | 93.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| steerable_sidecar-0.3.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 152.4 kB
Release files / steerable_sidecar-0.3.0.tar.gz
| Download URL | steerable_sidecar-0.3.0.tar.gz |
|---|---|
| Size | 93.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
39ab4f14eb6208a4828043956b0895945f6bff0da89ed02f502badf327a94c9c
|
|
BLAKE2b-256 checksum How to use checksums |
5271bf6068cce9a2488cf6cc5af45a213f909beb5b82a5a286110556101e1ef4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / steerable_sidecar-0.3.0-py3-none-any.whl
| Download URL | steerable_sidecar-0.3.0-py3-none-any.whl |
|---|---|
| Size | 59.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
15c5e9bb02b8b589f8d27ab1f4b1cd2fa3a9e86ebcec00dd214ae4b2e39b563b
|
|
BLAKE2b-256 checksum How to use checksums |
9bbfd518f2802a602de9dc8a9589b7c853cf680b9ce2b6ce178c276442a0cd15
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|