Integrations

OpenAI GPT-Live Integration

Use OpenAI GPT-Live for full-duplex speech-to-speech conversation, with reasoning and tools handled by a backend model.

GPT-Live is OpenAI's full-duplex voice model: it listens while it speaks, and it decides for itself when to take a turn and when to stop. Like the other realtime providers it handles speech recognition, the conversation and speech synthesis in one model, so separate STT and TTS settings do not apply.

What sets it apart is delegation. GPT-Live holds the conversation. Whenever something needs reasoning or a tool, it hands that to a backend model through the OpenAI Responses API, and speaks the result in its own words when it comes back.

Setup

GPT-Live runs on VoiceDock's platform keys by default, so you can select it without adding an API key first.

1. (Optional) Add your own OpenAI API key

Only needed to run GPT-Live on your own OpenAI account. It uses the same OpenAI key as the OpenAI text models. Add it under IntegrationsAPI Keys.

2. Configure the assistant

{
  "llm_config": {
    "provider": "openai_live",
    "model": "gpt-live-1",
    "voice": "marin",
    "messages": [
      { "role": "system", "content": "You are the receptionist of Acme. Keep your answers short." }
    ],
    "delegation": {
      "model": "gpt-5.6-luna",
      "instructions": "Check availability with check_availability before you offer a time slot."
    }
  }
}
FieldValuesNotes
modelgpt-live-1The voice model.
voicemarin (default), beacon, cinder, stone, vesperFixed for the whole session.
delegation.modelgpt-5.6-luna (default)The backend model for reasoning and tool calls.
delegation.instructionstextInstructions for the backend model only. Optional.

Two sets of instructions

GPT-Live works best when each model gets its own instructions. The system prompt in messages goes to the voice model: who the assistant is, how it sounds and how it talks. delegation.instructions goes to the backend model: business rules, which tool to use when, and how to handle a request.

Leave delegation.instructions out and the backend model receives the same system prompt as the voice model. That is the easiest start and works for most assistants. Split them when a long prompt full of rules makes the conversation feel slow or stiff.

Tools

Your tools in llm_config.tools work as on any other provider: webhooks, end_call and transfer_call. The backend model decides when to call them, and the voice model tells the caller what happened.

How it behaves differently

  • The model owns the turn-taking. It decides when the caller is done and when to stop talking. speech_config.turn_taking does not apply, as on every realtime provider.
  • Lines you give it are instructions, not scripts. The first message, silence prompts and the outbound opening line are passed to the model as something to say, and it says them in its own words. It can decline one that does not fit the conversation at that moment.
  • Voice and instructions are fixed for a session. In a workflow, a step with different instructions or a different voice starts a new connection to OpenAI. The conversation so far is sent along (up to 128 messages and 8,192 tokens), so the model picks up where it was, but the switch takes a moment.
  • There is no text-to-speech step. Pronunciation replacements and a fixed closing line (end_call_message) are pipeline-only and are refused on this provider, as on the other realtime providers.

Pricing

  • Platform keys (default): OpenAI usage at cost + €0,07/min orchestration. The voice session is $0.05 per minute, and the backend model's tokens are billed at cost on top of that, at OpenAI's token prices for that model.
  • Bring Your Own Key (optional): €0,07/min orchestration. Both parts are billed to your own OpenAI account.

How much the backend model adds depends on how often the assistant needs it. An assistant that mostly talks uses little; one that calls a tool on nearly every turn uses more.

Data processing

OpenAI processes this model outside the EEA by default. If your assistants need EU data residency, use Gemini Live on Vertex AI or the Google pipeline in the EU instead. The sub-processor list on the Trust Hub has the details.

Limitations

  • Languages outside OpenAI's strongest set may sound less natural than English. Test with real callers before you move a live number.
  • gpt-5.6-luna is the only backend model for now. Others follow once we have measured them on GPT-Live.
  • GPT-Live cannot speak a line word for word. If a sentence has to be exact, a pipeline assistant is the better fit.

API Reference

See BYOK API Reference for managing your OpenAI API key.

On this page