
Exposes a typed JSON ingress over HTTP POST or WebSocket, decoding each payload against the type the downstream port demands and emitting it as a t value. Use it for structured JSON ingest rather than raw-byte ingress.
Push-driven prompt ingest — feed external JSON into a local model and report the reply.
transport fixes the channel and max_message_bytes rejects oversized payloads before decoding, both bound at startup.drop_messages off makes the response wait until the message has landed downstream, so a slow consumer slows every request.drop_messages is the only hot-swappable knob; transport and max_message_bytes bind once at startup.Automated release