Skip to main content

Overview

Retrieve the complete list of models available to your organization, including models from OpenAI, Anthropic, Google, xAI, Mistral, Fireworks, and DeepSeek.

Method Signature

client.models.list() -> ListModelsResponse

Parameters

This method does not require any parameters.

Response

object
string
Response object type. Always "list".
data
array
List of available models.

Example

import dedalus_labs

client = dedalus_labs.Client(api_key="your-api-key")

response = client.models.list()

for model in response.data:
    print(f"{model.id} - {model.display_name}")
    print(f"  Provider: {model.provider}")
    if model.capabilities:
        print(f"  Supports vision: {model.capabilities.vision}")
        print(f"  Supports tools: {model.capabilities.tools}")

Build docs developers (and LLMs) love