Vapi · Schema

EvalModelListOptions

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
provider string This is the provider of the model.
View JSON Schema on GitHub

JSON Schema

vapi-evalmodellistoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EvalModelListOptions",
  "title": "EvalModelListOptions",
  "type": "object",
  "properties": {
    "provider": {
      "type": "string",
      "description": "This is the provider of the model.",
      "enum": [
        "openai",
        "anthropic",
        "google",
        "groq",
        "custom-llm"
      ]
    }
  },
  "required": [
    "provider"
  ]
}