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.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.6.5.tar.gz | 320.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| steerable_sidecar-0.6.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 514.7 kB
Release files / steerable_sidecar-0.6.5.tar.gz
| Download URL | steerable_sidecar-0.6.5.tar.gz |
|---|---|
| Size | 320.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6219c32baf696275c45ded022e92532ef92aa6a3e71003f9f72bebc9bcb41c6a
|
|
BLAKE2b-256 checksum How to use checksums |
b4d5f9d48bcdacdcadd9644bcaace06399d7bad9b2f91ea0540e7d2f02ef46d9
|
| 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.5-py3-none-any.whl
| Download URL | steerable_sidecar-0.6.5-py3-none-any.whl |
|---|---|
| Size | 194.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
360ddcfb9b871412b86e57e517ee181ee1462e95bf39355a56e0fb1fc33930e7
|
|
BLAKE2b-256 checksum How to use checksums |
80f219495869cda92e1d8784e919e4ebd5e7ccc8f97a1e0c955253bd2c9c708d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|