Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The LLM ID
Body
application/json
Response
Successfully updated LLM
curl --request PUT \
--url https://api.anam.ai/v1/llms/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"displayName": "<string>",
"description": "<string>",
"url": "<string>",
"llmFormat": "openai",
"modelName": "<string>",
"secret": "<string>",
"metadata": {}
}'Update an LLM configuration
curl --request PUT \
--url https://api.anam.ai/v1/llms/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"displayName": "<string>",
"description": "<string>",
"url": "<string>",
"llmFormat": "openai",
"modelName": "<string>",
"secret": "<string>",
"metadata": {}
}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The LLM ID
Successfully updated LLM
Was this page helpful?