On-device multimodal runtime stub for Developer Mode. Emits EventEnvelopes to the Orchestrator and does not persist identity or secrets.
-
Python
- pip install -r requirements.txt
- python src/server.py
- Open: http://localhost:8085/health
-
Docker
- docker build -t unison-io-core:dev .
- docker run --rm -p 8085:8085 -e UNISON_ORCH_HOST=host.docker.internal -e UNISON_ORCH_PORT=8080 unison-io-core:dev
PowerShell:
$body = @'
{
"timestamp": "2025-10-28T00:00:00Z",
"source": "io-core",
"intent": "echo",
"payload": { "message": "hello" }
}
'@
Invoke-RestMethod -Uri http://localhost:8085/io/emit -Method POST -ContentType 'application/json' -Body $body- UNISON_ORCH_HOST (default orchestrator)
- UNISON_ORCH_PORT (default 8080)
- Intended for Developer Mode; no persistence; models are pluggable later.