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.1
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.1.tar.gz | 268.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| steerable_sidecar-0.6.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 433.4 kB
Release files / steerable_sidecar-0.6.1.tar.gz
| Download URL | steerable_sidecar-0.6.1.tar.gz |
|---|---|
| Size | 268.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
482dba20467a38e7d5b6bcb3f29ecafd208853dbfb6f91a59c18c06418454cd4
|
|
BLAKE2b-256 checksum How to use checksums |
810ca41e544a4c5ce6105d0823b6302a912a499ce02b6243373c4116569bdf90
|
| 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.1-py3-none-any.whl
| Download URL | steerable_sidecar-0.6.1-py3-none-any.whl |
|---|---|
| Size | 165.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
6c7508d0ac6f3a9b301c0bc1d076fb96a9bc9e9daad2db382637d7f481c76028
|
|
BLAKE2b-256 checksum How to use checksums |
e3f8467e964f8b6636328287743c372f2ce6daae27536fcf6938d82598ca3645
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|