PUT
/
chat
/
{chat_id}
curl --request PUT \
  --url https://api.isosceles.ai/chat/{chat_id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "temperature": 0.3,
  "name": "Updated name",
  "system_message": "You are a customer support bot for ByteLeap.",
  "response_length": "SHORT"
}'
[
  {
    "brain_id": "e46c625f-9057-4e0c-88ba-3a27d0c34748",
    "chat_id": "8be10463-2234-4d4d-9fd5-17773e0e6f55",
    "created_at": "Sat, 21 Sep 2024 10:54:32 GMT",
    "created_from": "API",
    "last_updated": "Sat, 21 Sep 2024 10:54:32 GMT",
    "model": "gpt-4o-mini",
    "sp_metadata": {},
    "system_message": "You are a customer support bot for ByteLeap.",
    "temperature": 0.3,
    "title": "Updated name",
    "user_id": "7c4b9f75-cda3-4d32-a5bb-6d1f7352ff7b"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

chat_id
string
required

Body

application/json
brain_id
string
required

Knowledge Base ID

name
string
required

Name of the chat thread

chat_message_type
string
required

Type of message thread

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
chat_id
string
required
chat_message_type
string
required
created_at
string
required
created_from
string
required
last_updated
string
required
model
string
required
response_length
string
required
system_message
string
required
temperature
number
required
title
string
required
user_id
string
required
tools
object[]
required
brain_id
string | null