Conversation Creation + Management
Creating a New Conversation
To initiate a new conversation with a user:
The response takes the form of a body stream (MDN) containing New line Delimited JSON (ndjson):
It will include several event types as denoted by the type
field:
ConversationCreatedEvent
conversation-created
Provides the conversation_id
and confirms successful creation
ErrorEvent
error
Indicates an internal error occurred
NewMessageEvent
new-message
Contains message chunks (text or voice based on parameters)
InteractionCompleteEvent
interaction-complete
Signals successful stream completion
Important Conversation Management Rules
A user cannot have multiple active conversations for the same service
The
conversation_id
must be stored and used for all subsequent interactionsThe conversation object should be persisted for at least the duration of the active session
Interacting with a Conversation
After creating a conversation, you can send user messages:
Request Format
The request body must use
multipart/form-data
formatInclude a single form field named
recorded_message
containing UTF-8 encoded textThe body can be sent as a stream to reduce latency, as processing begins as soon as chunks are received
The response takes the form of a body stream:
Response Stream Events
UserMessageAvailableEvent
user-message-available
First event in response, includes the user message if sent as text
ErrorEvent
error
Indicates an internal error occurred
InteractionCompleteEvent
interaction-complete
Signals the interaction is complete
EndSessionEvent
end-session
Optional event if conversation automatically ends
Conversation Lifecycle Management
Understanding Conversation States
Started: Conversation is active and can receive interactions
Finished: Conversation has ended and cannot receive further interactions
Automatic vs. Manual Finish
A conversation can finish in two ways:
Automatically: When the service determines the conversation should finish (based on user intent, service completion, etc.)
Manually: When explicitly ended via the finish conversation API (e.g. due to timeout or user action)
Finishing a Conversation
To manually finish a conversation:
Important: This endpoint should only be called:
On started, non-finished conversations
After previous conversation API calls have completed
When the conversation hasn't automatically finished during interaction
When a conversation finishes, post-conversation analysis is initiated asynchronously (memory generation, user model updates, etc.).
Managing "Dangling" Conversations
Conversations never time out automatically. You have several options for handling inactive conversations:
Timeout Approach: Track user's last interaction time and call the finish endpoint after a defined period
Caution: This may terminate conversations users intend to continue
Resume Option (Recommended): When a user returns, offer options to:
Resume the existing conversation
Start a new conversation (which requires ending the current one)
Error Handling: If your application attempts to create a new conversation while one is active:
Catch the error response
Prompt the user to either resume or end the existing conversation
The Amigo system prevents users from having multiple ongoing conversations of the same service type, ensuring conversation integrity.
Last updated
Was this helpful?