cURL
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>" } '
{ "llm_id": "<string>", "display_name": "<string>", "version": 123, "model": "<string>", "general_prompt": "<string>", "begin_message": "<string>", "responsiveness": "<string>", "general_tools": [ { "name": "<string>", "type": "<string>", "description": "<string>" } ], "updated_at": "2023-11-07T05:31:56Z" }
Apply partial updates to an existing LLM configuration.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
LLM identifier.
Specific version to retrieve or update.
x >= 1
Updated LLM configuration.
Show child attributes