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.2
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.2.tar.gz | 269.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| steerable_sidecar-0.6.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 434.9 kB
Release files / steerable_sidecar-0.6.2.tar.gz
| Download URL | steerable_sidecar-0.6.2.tar.gz |
|---|---|
| Size | 269.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f4bfc505e8d79e8fd54a1efe7a4fc08cc6ca2e567df42bac9a9d653d3be0afcb
|
|
BLAKE2b-256 checksum How to use checksums |
7b4fecf4ad6c61ffe5a7cb66269d4a1bae7c4bb9b0470f37f738e6e146a52b8a
|
| 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.2-py3-none-any.whl
| Download URL | steerable_sidecar-0.6.2-py3-none-any.whl |
|---|---|
| Size | 165.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c2503a4e9ada41db20f10fd02bbde652c01bda670671258767c138de8c87eeb7
|
|
BLAKE2b-256 checksum How to use checksums |
41dae239f5c81ec12d3e636c517199259be0e77b8ad8761ef62b757925b4f39e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|