Mume AIMume AI
DocsModelsPricingChat
OverviewChat CompletionsResponses APIStreamingFunction CallingWeb SearchMCP ServersModelsError HandlingAuthentication

Available Models

Mume Gateway gives you access to 500+ models from the world's leading AI providers through a single API. Use the provider/model format when specifying models.

Model Format

All models follow the provider/model-name convention. For example:

Model Names
openai/gpt-4.1-mini anthropic/claude-opus-4.5 google/gemini-3-pro-preview mistralai/voxtral-small-24b-2507 moonshotai/kimi-k2-thinking

Providers

ProviderExample Models
OpenAIopenai/gpt-4.1-mini, openai/gpt-4.1-nano, openai/gpt-5.1
Anthropicanthropic/claude-opus-4.5
Googlegoogle/gemini-3-pro-preview
Mistralmistralai/voxtral-small-24b-2507
Moonshotmoonshotai/kimi-k2-thinking
Metameta-llama/llama-4-maverick
DeepSeekdeepseek/deepseek-chat
xAIx-ai/grok-3

Usage

Python
# Use any model by specifying provider/model-name response = client.chat.completions.create( model="openai/gpt-4.1-mini", messages=[{"role": "user", "content": "Hello!"}], ) # Switch providers instantly — same API, same code response = client.chat.completions.create( model="anthropic/claude-opus-4.5", messages=[{"role": "user", "content": "Hello!"}], )

Browsing Models

Explore the full catalog of available models on the Models page. You can filter by provider, capability (chat, image generation, vision), and more.


Image Generation

Mume also supports image generation models. Use the images endpoint:

Endpoint
POST https://mume.ai/api/v1/images/generations

Explore available image models on the Images page.


← Web SearchNext: Error Handling →