Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
Successfully created LLM
curl --request POST \
--url https://api.anam.ai/v1/llms \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"displayName": "<string>",
"description": "<string>",
"urls": [
{
"url": "<string>"
}
],
"llmFormat": "openai",
"modelName": "<string>",
"secret": "<string>",
"metadata": {}
}'Create a new LLM configuration
curl --request POST \
--url https://api.anam.ai/v1/llms \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"displayName": "<string>",
"description": "<string>",
"urls": [
{
"url": "<string>"
}
],
"llmFormat": "openai",
"modelName": "<string>",
"secret": "<string>",
"metadata": {}
}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successfully created LLM
Was this page helpful?