post_ai_chat_stream
Stream AI-driven chat responses to manage and automate GoLogin browser profiles. Send conversation history and enable streaming for real-time interactions.
Instructions
POST /ai/chat/stream
Input Schema
Name | Required | Description | Default |
---|---|---|---|
messages | Yes | Array of chat messages representing the conversation history | |
stream | No | Whether to use streaming response |
Input Schema (JSON Schema)
{
"properties": {
"messages": {
"description": "Array of chat messages representing the conversation history",
"items": {
"properties": {
"content": {
"description": "Content of the message",
"type": "string"
},
"role": {
"description": "Role of the message sender",
"enum": [
"user",
"assistant",
"system"
],
"type": "string"
}
},
"required": [
"role",
"content"
],
"type": "object"
},
"type": "array"
},
"stream": {
"description": "Whether to use streaming response",
"type": "boolean"
}
},
"required": [
"messages"
],
"type": "object"
}