cURL
curl --request PATCH \ --url https://control-plane.kubiya.ai/api/v1/models/{model_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "value": "<string>", "label": "<string>", "provider": "<string>", "model_type": "<string>", "logo": "<string>", "description": "<string>", "enabled": true, "recommended": true, "compatible_runtimes": [ "<string>" ], "capabilities": {}, "pricing": {}, "display_order": 123 } '
{ "id": "<string>", "value": "<string>", "label": "<string>", "provider": "<string>", "model_type": "<string>", "logo": "<string>", "description": "<string>", "enabled": true, "recommended": true, "compatible_runtimes": [ "<string>" ], "capabilities": {}, "pricing": {}, "display_order": 123, "created_at": "<string>", "updated_at": "<string>" }
Update an existing LLM model.
Only accessible by authenticated users (org admins recommended).
Enter your Kubiya API token (format: Bearer )
Schema for updating an existing LLM model
Successful Response
Schema for LLM model responses
Was this page helpful?