/** * This file was auto-generated by Fern from our API Definition. */ import * as ElevenLabs from "../index"; export interface AgentConfig { /** If non-empty, the first message the agent will say. If empty, the agent waits for the user to start the discussion. */ first_message?: string; /** Language of the agent - used for ASR and TTS */ language?: string; /** Configuration for dynamic variables */ dynamic_variables?: ElevenLabs.DynamicVariablesConfig; /** The prompt for the agent */ prompt?: ElevenLabs.PromptAgent; }