PostHog · Schema

LLMModelInfo

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string Provider-specific model identifier (e.g. 'gpt-4o-mini', 'claude-3-5-sonnet-20241022').
posthog_available boolean Whether this model is available on PostHog's trial credits without bringing a provider key.
View JSON Schema on GitHub

JSON Schema

posthog-llmmodelinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LLMModelInfo",
  "title": "LLMModelInfo",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Provider-specific model identifier (e.g. 'gpt-4o-mini', 'claude-3-5-sonnet-20241022')."
    },
    "posthog_available": {
      "type": "boolean",
      "description": "Whether this model is available on PostHog's trial credits without bringing a provider key."
    }
  },
  "required": [
    "id",
    "posthog_available"
  ]
}