{ "$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" ] }