Agent chat with tools
POST /v1/agent/chat
POST
/v1/agent/chat
Chat with an AI agent that has access to RAG tools for searching the knowledge base. The agent can automatically use semantic search, knowledge graph queries, and hybrid search to answer questions with grounded information.
Authorizations
Request Body required
object
message
required
The user message
string
system_prompt
Optional system prompt to guide the agent
string
history
Previous conversation history
Array<object>
object
role
string
content
string
temperature
number
max_tokens
integer
Responses
200
Successful response
object
success
boolean
response
The agent’s response
string
tool_calls
Tools used by the agent to generate the response
Array<object>
object
tool
string
arguments
object
result
object
error
string
400
Invalid request
object
error
object
message
string
type
string
code
string
param
string
401
Invalid or missing API key
object
error
object
message
string
type
string
code
string
param
string