curl --request POST \
--url https://app.aseed.ai/custdev/agent/chat \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"thread_id": "<string>",
"message": "<string>",
"reasoning_mode": "fast",
"forced_action": "research_context"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Send a message to the AI agent and receive a streaming response.
Request body:
Returns:
curl --request POST \
--url https://app.aseed.ai/custdev/agent/chat \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"thread_id": "<string>",
"message": "<string>",
"reasoning_mode": "fast",
"forced_action": "research_context"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request model for sending a chat message.
1 - 20000Reasoning mode: fast or thinking
fast, thinking Принудительный выбор инструмента/агента на основе активного тега
research_context, interview_guide, documentation Successful Response
Was this page helpful?