Skip to main content
POST
/
v1
/
installable-agents
/
installs
/
{installId}
/
configure
Configure a Hermes install's provider/model
curl --request POST \
  --url https://api.runtools.ai/v1/installable-agents/installs/{installId}/configure \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "provider": "openai",
  "displayName": "<string>",
  "avatarSeed": "<string>",
  "model": "<string>",
  "baseUrl": "<string>",
  "secretName": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.runtools.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

WorkOS session token or RunTools API key (rt_live_* / rt_test_*). Used in Authorization: Bearer <token> header.

Path Parameters

installId
string<uuid>
required

Body

application/json
provider
string
required
Example:

"openai"

displayName
string
avatarSeed
string
model
string
baseUrl
string
secretName
string

Name of the org secret that stores the provider API key. Required for api_key provider types; ignored when provider uses OAuth (e.g. openai-codex).

Response

200

Configured.