List Supported Models
GET/api/v1/evals/models
List supported models.
Request
Cookie Parameters
session any
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
name SupportedLLMModelNames (string)required
The name of the supported LLM model.
Possible values: [GPT_3_5_TURBO
, GPT_4
, GPT_4_TURBO
, GPT_4O
, GPT_4O_MINI
, AZURE_OPENAI
]
enabled Enabled (boolean)
Whether the LLM model is enabled for use in LlamaCloud.
Default value:
true
details
object
required
The details of the supported LLM model.
name Name (string)required
The name of the LLM model.
description Description (string)required
The description of the LLM model.
multi_modal Multi Modal (boolean)required
Whether the model supports multi-modal image input
[
{
"name": "GPT_3_5_TURBO",
"enabled": true,
"details": {
"name": "string",
"description": "string",
"multi_modal": true
}
}
]
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...