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-thinkingProviders
| Provider | Example Models |
|---|---|
| OpenAI | openai/gpt-4.1-mini, openai/gpt-4.1-nano, openai/gpt-5.1 |
| Anthropic | anthropic/claude-opus-4.5 |
| google/gemini-3-pro-preview | |
| Mistral | mistralai/voxtral-small-24b-2507 |
| Moonshot | moonshotai/kimi-k2-thinking |
| Meta | meta-llama/llama-4-maverick |
| DeepSeek | deepseek/deepseek-chat |
| xAI | x-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/generationsExplore available image models on the Images page.