curl --request POST \
--url https://api.upon-ai.com/api/llms \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"workspaceId": 42,
"display_name": "Concierge v2",
"model": "gpt-4o-mini",
"general_prompt": "You are the voice of UponAI...",
"begin_message": "Hi there! Thanks for calling.",
"responsiveness": "fast",
"general_tools": [
{
"name": "lookup_customer",
"description": "Retrieve CRM records by phone number.",
"type": "function"
}
]
}
'