-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
I have the following to send a call through Retell to another outbound number:
retell_client = AsyncRetell(api_key=os.getenv("OPPENHEIMER_RETELL_API_KEY", ""))
await retell_client.llm.update(
llm_id=RETELL_BOOK_APPT_LLM_ID,
general_prompt=CUSTOM_PROMPT,
model="gpt-4o-mini",
)
response = await retell_client.call.create(
from_number=RETELL_AGENT_NUMBER,
to_number=CUSTOM_OUTBOUND_AGENT,
override_agent_id=RETELL_BOOK_APPT_AGENT_ID,
)Two questions:
-
Is there a way to set this call/agent up with a
responsivenessparameter: ()end_call_after_silence_ms: int -
Is there a way to add an "end_call" parameter that will automatically end the call if it exceeds a certain amount of time (i.e. 10 minutes)?
Thanks in advance.
Metadata
Metadata
Assignees
Labels
No labels