Response listing available models.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ModelListResponse", "title": "ModelListResponse", "type": "object", "description": "Response listing available models.", "properties": { "object": { "type": "string", "enum": [ "list" ], "example": "list" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Model" }, "example": [] } }, "required": [ "object", "data" ] }