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.6.4
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.6.4.tar.gz | 315.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| steerable_sidecar-0.6.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 506.6 kB
Release files / steerable_sidecar-0.6.4.tar.gz
| Download URL | steerable_sidecar-0.6.4.tar.gz |
|---|---|
| Size | 315.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d1b3a63cd7c2100e7da81a75f4ef58a66710c485cbefdefb6bbd182ae2955eba
|
|
BLAKE2b-256 checksum How to use checksums |
3881821dd8ce9ff1e9d6661974446ead6a2baa8254a9c38c74b53ca12570e810
|
| 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.6.4-py3-none-any.whl
| Download URL | steerable_sidecar-0.6.4-py3-none-any.whl |
|---|---|
| Size | 191.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d25b5836203c46a3bb8179764c5570e235974a5a2de61b4e644f21c69e073b80
|
|
BLAKE2b-256 checksum How to use checksums |
82c33aedbf0209c0bdf49fe5bfde9c425680d4869ee8ba6cc4ceecebf60b522e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|