Interact WebSocket
The Interact
WebSocket function enables real-time interaction with the TIXAE agents. This allows users to send messages and receive streaming responses dynamically. This document provides a comprehensive guide on how to connect, send messages, and handle responses.
Example Workflow
- Open a WebSocket connection.
- Send a structured
interactObject
payload. - Listen for responses and process different event types.
- Close the WebSocket when done.
By following this guide, users can seamlessly integrate the continueInteract
WebSocket into their applications for real-time communication.
WebSocket Endpoint
The WebSocket connection URL is generated based on the region:
Where <server-region>
is either:
eu
for the European Unionna
for the North America
Connecting to the WebSocket
Upon opening the connection, send a JSON payload to start interacting with the AI agent:
Sending Data
To send a message, structure the request as follows:
Receiving Messages
Responses from the WebSocket arrive as message stream. To listen for incoming messages from the WebSocket:
Closing the Connection
To handle WebSocket closure:
Handling Errors
To manage errors gracefully:
Response Structure
Messages received from the WebSocket follow this structure:
Conclusion
This document outlines the setup, usage, and integration of the Interact
WebSocket. Developers can follow these instructions to integrate real-time AI interactions into their applications using WebSockets.