PUT
/
agent
/
{id}
curl --request PUT \
  --url https://api.simli.ai/agent/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "face_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "first_message": "<string>",
  "prompt": "<string>",
  "voice_provider": "elevenlabs",
  "voice_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "voice_model": "sonic-english",
  "llm_model": "gpt-4o-mini",
  "llm_endpoint": "https://api.example.com/v1/chat/completions",
  "language": "<string>",
  "max_idle_time": 123,
  "max_session_length": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}'

Path Parameters

id
string
required

Body

application/json
face_id
string
name
string
first_message
string
prompt
string
voice_provider
enum<string>
Available options:
elevenlabs,
cartesia
voice_id
string
voice_model
string
Example:

"sonic-english"

llm_model
string
Example:

"gpt-4o-mini"

llm_endpoint
string

The URL of the custom LLM to use

Example:

"https://api.example.com/v1/chat/completions"

language
string
max_idle_time
integer
max_session_length
integer
created_at
string

Timestamp when the agent was created

updated_at
string

Timestamp when the agent was updated

Response

200
_mintlify/placeholder

Agent updated successfully