Response
200 - application/json
Successful Response
The response is of type any.
List all available model providers from the codebase.
This endpoint scans the mielto/models directory and returns all available LLM providers that can be used in the system.
Example:
GET /integrations/models
Response:
{
"models": [
{
"id": "openai",
"name": "OpenAI",
"type": "llm",
"path": "mielto.models.openai"
},
{
"id": "anthropic",
"name": "Anthropic",
"type": "llm",
"path": "mielto.models.anthropic"
}
],
"total": 33
}
Successful Response
The response is of type any.