Chat API
Send and receive messages in a Helper conversation
Chat API
The Chat API allows you to send messages to Helper and receive AI-generated responses. This API follows the Vercel AI SDK streaming response format, making it compatible with various client libraries.
Send Message
Sends a message to Helper and returns a streaming response with the AI-generated reply.
Headers
Header | Value | Description |
---|---|---|
Authorization | Bearer <token> | Session token obtained from the Session API |
Content-Type | application/json | Type of the request payload |
Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
message | object | Yes | Message object containing the content to send to Helper. |
conversationSlug | string | Yes | Slug of the conversation to send the message to. |
Message Object
The message object should have the following structure:
Field | Type | Required | Description |
---|---|---|---|
role | string | Yes | Either "user" or "assistant" . |
content | string | Yes | Text content of the message. |
id | string | No | Unique identifier for the message. If not provided, one will be generated. |
Example Request Body
Response
The response is a streaming response following the Vercel AI SDK format, with events for:
- Text content chunks
- Tool calls (if any)
- Final message annotations
The full response is assembled by concatenating the text chunks as they arrive.
Error Responses
Status Code | Error | Description |
---|---|---|
401 | Invalid token | The session token is invalid or expired. |
404 | Mailbox not found | The mailbox specified in the session doesn't exist. |
404 | Conversation not found | The specified conversation doesn't exist. |
401 | Unauthorized | The user doesn't have permission to access this conversation. |
Streaming Responses
The chat API uses a streaming response format that follows the Vercel AI SDK standard. This allows for real-time display of AI responses as they're generated.
For detailed information about the data stream protocol, refer to the Vercel AI SDK Stream Protocol documentation.
Response Format
The response is a stream of server-sent events (SSE), with each event containing a part of the response:
Handling Streams in JavaScript
You can use the Vercel AI SDK or manually handle the streams:
Using Vercel AI SDK (recommended)
Manual Stream Handling
Metadata and Parameters
Tool Integration
The chat API can utilize tools that you've configured in your Helper mailbox. When Helper decides to use a tool, the response will include tool call information.
Example Integration
Here's a complete example of how to use the Chat API in a simple web application: