curl --request GET \
--url https://api.example.com/v1/conversations/{conversation_id} \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"last_updated_at": "2023-11-07T05:31:56Z",
"etag": "<string>",
"settings": {
"model_selection": [
"<string>"
],
"temperature": 0.4,
"max_tokens": 123,
"tools": [
{
"name": "Web Research",
"description": "Search the web for information",
"enabled": true,
"type": "web_research"
},
{
"name": "Noxus Q&A",
"description": "Answer questions about the Noxus platform",
"enabled": true,
"type": "noxus_qa"
},
{
"name": "Select Knowledge Base Q&A",
"description": "Select a knowledge base to answer questions about",
"enabled": true,
"type": "kb_selector"
}
],
"extra_instructions": "<string>"
},
"messages": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"message_parts": [
{
"role": "user",
"type": "user",
"content": "",
"tool": "web_research",
"kb_id": "<string>",
"files": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"size": 123,
"type": "<string>",
"status": "pending",
"url": "<string>"
}
],
"model_selection": [
"<string>"
],
"images": [
"<string>"
]
}
]
}
]
}Get a conversation by it’s ID
curl --request GET \
--url https://api.example.com/v1/conversations/{conversation_id} \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"last_updated_at": "2023-11-07T05:31:56Z",
"etag": "<string>",
"settings": {
"model_selection": [
"<string>"
],
"temperature": 0.4,
"max_tokens": 123,
"tools": [
{
"name": "Web Research",
"description": "Search the web for information",
"enabled": true,
"type": "web_research"
},
{
"name": "Noxus Q&A",
"description": "Answer questions about the Noxus platform",
"enabled": true,
"type": "noxus_qa"
},
{
"name": "Select Knowledge Base Q&A",
"description": "Select a knowledge base to answer questions about",
"enabled": true,
"type": "kb_selector"
}
],
"extra_instructions": "<string>"
},
"messages": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"message_parts": [
{
"role": "user",
"type": "user",
"content": "",
"tool": "web_research",
"kb_id": "<string>",
"files": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"size": 123,
"type": "<string>",
"status": "pending",
"url": "<string>"
}
],
"model_selection": [
"<string>"
],
"images": [
"<string>"
]
}
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Show child attributes
The models to use for the conversation
The temperature to use for the conversation
The maximum number of tokens to use for the conversation
The tools to use for the conversation
Show child attributes
Extra instructions to use for the conversation
Show child attributes
Show child attributes
system, user, assistant, function, noxus "user"web_research, kb_qa, noxus_qa Show child attributes
pending, success, error