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.27
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.27.tar.gz | 331.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| steerable_sidecar-0.6.27-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 530.4 kB
Release files / steerable_sidecar-0.6.27.tar.gz
| Download URL | steerable_sidecar-0.6.27.tar.gz |
|---|---|
| Size | 331.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
afdf0a20b9422f584312252e98e9e088aa414cce49246bb5a4beb42b27e9fb32
|
|
BLAKE2b-256 checksum How to use checksums |
ccee26f6b284da0f74ecc35acdceb583f030f7122ec2e7273b638a0c000eff52
|
| 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.27-py3-none-any.whl
| Download URL | steerable_sidecar-0.6.27-py3-none-any.whl |
|---|---|
| Size | 199.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
62506bdae529a130f8553906b878d272a3132c5785a05c97b9079f81389aebe6
|
|
BLAKE2b-256 checksum How to use checksums |
71c695b5934a8cd6161ee3a5e5d7f830155a1d3f2949c436a4719421dd09ad66
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|