The EVI control plane is a configuration and orchestration API that works alongside your active Chat’s data plane. The reference Chat connection is the data plane that carries live audio and assistant responses. The control plane lets you change how the session runs and observe it in real time, so you can update session settings, rotate provider keys, and attach mirrors from trusted servers without exposing secrets or disrupting the live stream.
Looking for sample code? Visit our examples below to see how the control plane is consumed in practice.
See the control plane API used to observe an active Chat in Python.
See the control plane implemented in our Next.js quickstart to securely set a supplemental LLM API key.
Use the control plane when you:
chatId.POST /chat/:chatId/send expects an API key via the X-Hume-Api-Key header.WSS /chat/:chatId/connect accepts an API key via header or an access token via query parameter.chatId.allow_connection
can be connected to with WSS /chat/:chatId/connectEndpoints (control plane)
See the API reference for full schemas and parameter details.
Use WSS /v0/evi/chat/:chatId/connect to attach a secondary connection to a running Chat.
The socket is bi-directional for non-audio (sending audio_input is not permitted). On connect you receive the full
session history, then live events in real time, using the same event schema as the reference Chat socket.
You can only connect to a Chat that is currently active. Use the chat history APIs to fetch transcripts for past sessions instead.
Use cases
See sample requests below
Use POST /v0/evi/chat/:chatId/send to send control messages to the active chat.
You can send any message type that the Chat accepts, except audio_input.
This includes updating session settings and any other publish messages supported by EVI.
Use cases
See sample requests below: