zero-tvm · agent host

This tab runs the model. scripts/agent-server.mjs gives it an OpenAI-shaped address on :8017.
Alternative, and the one to prefer for real use: npm run station runs the engine in-process on dawn.node (no browser tab, no throttling) and takes the same :8017. They cannot both hold the port — run one.
booting…
Point a client at http://127.0.0.1:8017/v1
Cline — API Provider “OpenAI Compatible”, Base URL above, any model id.
pi~/.pi/agent/models.json, api: "openai-completions", that baseUrl.
curlcurl 127.0.0.1:8017/v1/chat/completions -d '{"messages":[{"role":"user","content":"hi"}]}' -H 'content-type: application/json'
Keep this tab visible.
Chrome throttles background tabs hard — share.ts measured ~23 tok/s backgrounded against ~65 focused. An agent run is long and unattended, which is exactly when a tab stops being focused.