POST
/
chat
curl --request POST \
  --url https://api.isosceles.ai/chat/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "brain_id": "d42bca76-67d9-4ba4-9c13-b8e5d5f97744",
  "name": "Test API Chat Thread",
  "chat_message_type": "TEXT"
}'
{
  "brain_id": null,
  "chat_id": null,
  "chat_message_type": "TEXT",
  "created_at": "Sun, 01 Dec 2024 09:54:39 GMT",
  "created_from": "API",
  "last_updated": "Sun, 01 Dec 2024 09:54:39 GMT",
  "model": "gpt-4o-mini",
  "response_length": "MEDIUM",
  "system_message": "",
  "temperature": 0.2,
  "title": "Test API Chat Thread11",
  "user_id": "59d5aad5-aedb-430f-882c-74283ea19c8e"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
name
string
required

The name of the chat

chat_message_type
enum<string>
required

The type fo response interface

Available options:
TEXT,
JSON
brain_id
string

The ID of the brain to associate with the chat

response_length
enum<string> | null
default:MEDIUM

Configure response length

Available options:
SHORT,
MEDIUM,
LONG
temperature
number | null

between 0 and 1

Required range: 0 <= x <= 1
system_message
string | null

System message for the LLM

model
string | null
default:gpt-4o-mini

LLM Model to choose from

tools
string[]

IDs of tools connected to this chat thread

Response

200 - application/json
brain_id
string | null
chat_id
string
created_at
string
created_from
string
last_updated
string
model
string
system_message
string
temperature
number | null
title
string
user_id
string
response_length
enum<string> | null
default:MEDIUM
Available options:
SHORT,
MEDIUM,
LONG
chat_message_type
enum<string>
default:TEXT
Available options:
TEXT,
JSON