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
}
Documentation Index
Fetch the complete documentation index at: https://docs.mielto.com/llms.txt
Use this file to discover all available pages before exploring further.
Successful Response