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.40
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.40.tar.gz | 343.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| steerable_sidecar-0.6.40-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 551.1 kB
Release files / steerable_sidecar-0.6.40.tar.gz
| Download URL | steerable_sidecar-0.6.40.tar.gz |
|---|---|
| Size | 343.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2307d0a75ecd8ce4cc07d77cd87e47afe17dc7368b7ab438068ac094805fcb76
|
|
BLAKE2b-256 checksum How to use checksums |
4682a813f5747ebb25e14f8a15d3c9b82d12ec880384792a3db70aea8bdefa75
|
| 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.40-py3-none-any.whl
| Download URL | steerable_sidecar-0.6.40-py3-none-any.whl |
|---|---|
| Size | 207.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a64d36e48964358fe5fddb9f87ea566a046d75dcef6bb48b5ae1883f8e5a7a41
|
|
BLAKE2b-256 checksum How to use checksums |
ec3b2879d4ca0cfeb1466d3160fab698d58a676409db4964dbd6c45c1ae41bd3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|