Skip to main content

Framework Node

The Framework node is the heart of every Voiceblox flow. It receives all component connections, acts as the entry point for the conversation step chain, and determines the runtime. Every flow must have exactly one Framework node.

Providers

ProviderStatus
livekit✅ Stable
pipecat🔜 Coming soon

Parameters

ParameterTypeDefaultDescription
providerenumlivekitRuntime framework (livekit)
interruption_modeenumoffInterruption: off (disabled) or on (adaptive ML-based detection for cascade, VAD for realtime)

Input handles

HandleTypeMax connectionsDescription
persona_inpersona1Agent identity and system prompt
llm_inllm1Language model
tts_intts1Text-to-speech engine
stt_instt1Speech-to-text engine
avatar_inavatar1Visual avatar (optional)
transfer_inframeworkunlimitedIncoming transfers from Transfer nodes
tools_incontextunlimitedMCP servers and Exa search tools

Output handle

HandleTypeDescription
outputcontrolConnects to the Start node

Interruption behavior

The interruption_mode parameter controls how the agent handles user speech while it is speaking:
  • Off — The agent cannot be interrupted. Useful for scripted announcements or compliance-sensitive flows.
  • On — The agent can be interrupted by the user. For cascade agents, this uses adaptive ML-based interruption handling that distinguishes true interruptions from conversational backchanneling (e.g. “uh-huh”, “okay”). For realtime agents, this uses VAD-based interruption detection.
A flow without a Persona, LLM, TTS, and STT connected to the Framework node will fail to run.