Update a robot provider
Update a Robot model provider configuration. API keys are write-only and are redacted from responses.
/robots/providers/{provider}Update a Robot model provider configuration. API keys are write-only and are redacted from responses.
In: cookie
Path Parameters
Robot model provider namespace
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
curl -X PATCH "https://example.com/robots/providers/openai" \ -H "Content-Type: application/json" \ -d '{}'{
"provider": "openai",
"supported": true,
"settings": {
"enabled": true,
"has_api_key": true,
"requires_api_key": true
},
"cache": {
"last_refreshed_at": "2019-08-24T14:15:22Z",
"last_error": "string",
"stale": true
},
"models": [
{
"ref": "openai/gpt-4.1-mini",
"provider": "openai",
"model": "gpt-4.1-mini"
}
]
}{
"type": "string",
"title": "string",
"detail": "string",
"trace_id": "string",
"metadata": {}
}List robot providers GET
Retrieve supported Robot model providers, redacted settings, cache status and cached models.
Get a robot session GET
Retrieve a specific robot session with all of its messages. Sessions can involve interactions with multiple Robots so the Robot is specified on each message. Messages may not be representative of exactly what is sent into a language model, as certain optimisations may be performed before this such as compaction, summarisation or removal of irrelevant context. Any member with "USE_ROBOTS" can see any other members' sessions and messages with a Robot. Robots are not considered private assistants, but rather shared tools for the team to use for managing their community.