Compare

Gemini Omni Flash vs MiniMax H3 Max Text to Video

Pricing per million tokens, context window, capabilities — pulled from each provider's public docs. All 2 are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.

Search2/4
Gemini Omni Flash
google/gemini-omni-flash
Provider
Google
MiniMax
Family
Modality
video
video
Context window
Max output
Released
2026-09-09
2026-09-16
License
Proprietary
Open-weight
Per output second
$1.50 /sec
$0.025 /sec
Tools
Streaming
Vision
JSON mode
Reasoning
Prompt caching
Batch API
Try it
View model →
View model →
Gemini Omni Flash
google/gemini-omni-flash
Full spec →

Preview high-performance multimodal video generation and editing model with conversational controls and generated audio.

Strengths
  • Text-to-video generation
Use cases
PromosDemosStoryboards
MiniMax H3 Max Text to Video
minimax/h3-max
Full spec →

fal's H3 Max is a post-trained variant of MiniMax H3, tuned for stronger prompt adherence and better aesthetics while co-optimized with our custom inference stack for higher throughput with no compromises on output quality

Strengths
  • Text-to-video generation
  • Cinematic motion
Use cases
AdsStoryboardsDemos

Compare with another

GPT-6 Astra vs Gemini Omni Flash
openai/gpt-6-astra · google/gemini-omni-flash
GPT-6 Astra vs MiniMax H3 Max Text to Video
openai/gpt-6-astra · minimax/h3-max
Claude Fable 5.1 vs Gemini Omni Flash
anthropic/claude-fable-5.1 · google/gemini-omni-flash
Claude Fable 5.1 vs MiniMax H3 Max Text to Video
anthropic/claude-fable-5.1 · minimax/h3-max
Gemini 3.8 Flash vs Gemini Omni Flash
google/gemini-3.8-flash · google/gemini-omni-flash
Gemini 3.8 Flash vs MiniMax H3 Max Text to Video
google/gemini-3.8-flash · minimax/h3-max
Claude Opus 5 vs Gemini Omni Flash
anthropic/claude-opus-5 · google/gemini-omni-flash
Claude Opus 5 vs MiniMax H3 Max Text to Video
anthropic/claude-opus-5 · minimax/h3-max
Glm-5.3 vs Gemini Omni Flash
zai-org/glm-5.3 · google/gemini-omni-flash
SWITCH BETWEEN THEM

One key, all 2, one line different.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.aigateway.sh/v1",
    api_key="sk-aig-...",
)

# Gemini Omni Flash
client.chat.completions.create(
    model="google/gemini-omni-flash",
    messages=[{"role":"user","content":"hello"}],
)

# MiniMax H3 Max Text to Video
client.chat.completions.create(
    model="minimax/h3-max",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →