list_models
Retrieve and display all available models from OpenAI, Anthropic, or Google using a unified interface for streamlined AI model management.
Instructions
List all available models from a specific provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
provider | Yes | The AI provider to list models from |
Input Schema (JSON Schema)
{
"properties": {
"provider": {
"description": "The AI provider to list models from",
"enum": [
"openai",
"anthropic",
"google"
],
"type": "string"
}
},
"required": [
"provider"
],
"type": "object"
}