- README
- Authentication
- Guides
- API Keys
- Chats
- Documents
- Knowledge Bots
Create Chat
POST
/api/chats
chat
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
content
string
required
recipe_id
string
optional
llm_config
string
optional
system_prompt
string
optional
Example
{
"content": "Tell me something about Manhattan",
"system_prompt": "Your name is Tom and you are an expert about the history of New York."
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.crbnai.com/api/chats' \
--header 'Content-Type: application/json' \
--data-raw '{
"content": "Tell me something about Manhattan",
"system_prompt": "Your name is Tom and you are an expert about the history of New York."
}'
Responses
🟢200OK
application/json
Body
id
string <uuid>
optional
created_at
string <date-time>
optional
last_message_at
string <date-time>
optional
title
string
required
owner_id
string <uuid>
required
recipe_id
string <uuid> | null
optional
llm_config
object (LanguageModelConfig)
required
model
string
required
vendor
string
required
Example
{
"title": "cupiditate",
"owner_id": "e490bf0f-f308-4ab8-9faf-1870af66e34f",
"created_at": "2048-11-13T14:49:50.362Z",
"system_prompt": "Hic neque modi.",
"last_message_at": "2088-12-06T18:57:02.588Z",
"id": "74b53dbd-c6bd-45cd-9b9e-94aae856d9bc",
"recipe_id": "b0b59f52-b385-4312-9e01-02f18ff4c472"
}
Modified at 2024-01-24 16:44:48