docs
|
source
|
readme
|
quickstart
INTERACTIONS PROTOCOL Playground
powered by
Tavus
Join
conversation.
utterance
AppMessage Event Log
sendAppMessage({ "message_type": "conversation", "event_type": "conversation.echo", "conversation_id": "c123456", "properties": { "text": "This is the text the replica will speak.", "modality": "speech" } });
conversation.
echo
sendAppMessage({ "message_type": "conversation", "event_type": "conversation.respond", "conversation_id": "c123456", "properties": { "text": "This is text the replica will respond to, as if the user in the meeting spoke it." } });
conversation.
respond
sendAppMessage({ "message_type": "conversation", "event_type": "conversation.interrupt", "conversation_id": "c123456" });
conversation.
interrupt
sendAppMessage({ "message_type": "conversation", "event_type": "conversation.overwrite_llm_context", "conversation_id": "c123456", "properties": { "text": "This text is the context that will be used to overwrite the existing conversational context." } });
conversation.
overwrite_llm_context