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.2.5
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.2.5.tar.gz | 33.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| steerable_sidecar-0.2.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 53.3 kB
Release files / steerable_sidecar-0.2.5.tar.gz
| Download URL | steerable_sidecar-0.2.5.tar.gz |
|---|---|
| Size | 33.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
30126fd172f23784eebd0225a2d00a3e6681a0be3ef7404d1ef6e7ad8d54ee6b
|
|
BLAKE2b-256 checksum How to use checksums |
dbf399efe400dd73d7a07bfddfdeed15274cbae05e2e6ad7eddc078464fd5efd
|
| 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.2.5-py3-none-any.whl
| Download URL | steerable_sidecar-0.2.5-py3-none-any.whl |
|---|---|
| Size | 19.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
52200d36ca3cde35222ee5248357065de1f724b6c98c44d220ec7f3dae0c71c8
|
|
BLAKE2b-256 checksum How to use checksums |
b99d639fefd06353f3c85eee42d10fd55ae8fcd9f30256563d08b92fe1f324ba
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|