AI Models List

Description

Lists available LLM models from all configured providers (OpenAI, Anthropic, Ollama). Use this to discover valid model identifiers before starting an AI session.

Overview

Returns the cached list of available LLM models grouped by provider. The model cache is populated on server startup. Use this to find valid model names for AISessionStart.

Example

{
  "function_call": {
    "name": "AIModelsList",
    "arguments": {}
  }
}

Filter by Provider

{
  "function_call": {
    "name": "AIModelsList",
    "arguments": {
      "Provider": "Anthropic"
    }
  }
}

Example Output

Provider    Model
--------    -----
Anthropic   claude-sonnet-4-6
Anthropic   claude-haiku-4-5-20251001
Ollama      llama3.1:70b
OpenAI      gpt-4o
OpenAI      gpt-4o-mini
Scroll to Top