PostHog · Schema

LLMModelsListResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
models array Models supported for the requested provider.
View JSON Schema on GitHub

JSON Schema

posthog-llmmodelslistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LLMModelsListResponse",
  "title": "LLMModelsListResponse",
  "type": "object",
  "properties": {
    "models": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LLMModelInfo"
      },
      "description": "Models supported for the requested provider."
    }
  },
  "required": [
    "models"
  ]
}