All phone numbers come with the default agent configuration. Let’s change the
prompt so the AI responds like Yoda.
from vocode import AgentUpdateParamsyoda_prompt ="I want you to act as Yoda. Respond as Yoda would."number = vocode_client.numbers.update_number( phone_number="YOUR_NUMBER", inbound_agent=AgentUpdateParams(prompt=yoda_prompt))
We will use the rachel voice from ElevenLabs. Instead of updating our existing agent directly,
we’ll create a new voice config and set the agent to use it.
The initial message will be spoken as soon as the call starts before the user says anything. Let’s make our agent say “Hello, I am Yoda” when the call starts.
from vocode import AgentUpdateParamsnumber = vocode_client.numbers.update_number( phone_number="YOUR_NUMBER", inbound_agent=AgentUpdateParams(initial_message="Hello, I am Yoda."))