Get Vendor Model Details
Returns detailed information about a specific AI model by vendor and model name.Loading...
Current path: /ai/models/fetch
Available methods and their JSON schemas
get
Get Vendor Model Details
AI: LLM ModelsReturns detailed information about a specific AI model by vendor and model name.
JSON Document Schema:
{
"Path": "/ai/models/fetch",
"Method": "get",
"Tag": "AI: LLM Models",
"Summary": "Get Vendor Model Details",
"Description": "Returns detailed information about a specific AI model by vendor and model name.",
"Parameters": [
{
"name": "vendor",
"in": "path",
"description": "Vendor name (e.g., openai)",
"required": true,
"type": "string",
"default": null
},
{
"name": "model",
"in": "path",
"description": "Model name (e.g., gpt-4)",
"required": true,
"type": "string",
"default": null
},
{
"name": "loc",
"in": "query",
"description": "Localization language (ru, es)",
"required": false,
"type": "string",
"default": null
}
]
}