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