curl --request PATCH \
--url https://api.upon-ai.com/api/llms/{llmId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"workspaceId": 123,
"general_prompt": "<string>",
"begin_message": "<string>",
"responsiveness": "<string>",
"model": "<string>",
"s2s_model": "<string>",
"begin_after_user_silence_ms": 123,
"model_temperature": 123,
"model_high_priority": true,
"tool_call_strict_mode": true,
"knowledge_base_ids": [
"<string>"
],
"general_tools": [
{
"name": "<string>",
"type": "<string>",
"description": "<string>"
}
],
"states": [
{
"name": "<string>",
"state_prompt": "<string>",
"edges": [
{
"destination_state_name": "<string>",
"description": "<string>"
}
],
"tools": [
{
"name": "<string>",
"type": "<string>",
"description": "<string>"
}
]
}
],
"starting_state": "<string>",
"default_dynamic_variables": {},
"mcps": [
{
"name": "<string>",
"url": "<string>",
"headers": {},
"query_params": {},
"timeout_ms": 123
}
]
}
'