
Model Arena
Compare top LLMs like DeepSeek V4 Pro and GPT 5.5 side by side on real coding, math, and system design prompts, benchmarked live on GMI Cloud's inference API for speed, cost, and output quality.
Keep your code, change the model ID. Chat, vision, and reasoning on H200 GPUs
curl https://api.gmi-serving.com/v1/chat/completions \
-H "Authorization: Bearer $GMI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-ai/DeepSeek-V4-Pro",
"stream": true,
"messages": [{"role": "user", "content": "Hello"}]
}'Models Available
Data Center Coverage
Uptime target

Start with the piece you need. Each links to its reference
Chat, vision, and reasoning on one OpenAI-compatible endpoint
Python and TypeScript clients. Drop-in for the OpenAI SDK
Deploy and run agents on managed compute
Quickstarts, references, and code samples
Create a key, pick a model, read the stream
Generate an API key in the console
Copy a model id, or list them with GET /v1/models
Call the endpoint and read the stream
Switch to a dedicated endpoint for fixed latency
python · openai client
# pip install openai
from openai import OpenAI
client = OpenAI(base_url="https://api.gmi-serving.com/v1",
api_key=GMI_API_KEY) # from console.gmicloud.ai
stream = client.chat.completions.create(
model="deepseek-ai/DeepSeek-V4-Pro", # any id from /v1/models
stream=True,
messages=[{"role":"user",
"content":"Summarize this paragraph."}])
for chunk in stream:
print(chunk.choices[0].delta.content or "", end="")One base URL, one key, the same request shape across routes

Apps running on the same API and compute. Open one to see it work

Compare top LLMs like DeepSeek V4 Pro and GPT 5.5 side by side on real coding, math, and system design prompts, benchmarked live on GMI Cloud's inference API for speed, cost, and output quality.

Your Spotify year, sorted into chapters. Claude names your eras, roasts your top songs, and recommends what's missing. Gemini paints each chapter.

Photorealistic image compositing. Gemini 3.1 Pro reads the scene's light and perspective; Nano Banana 2 paints your objects in subtly and naturally.
200+ open and frontier models behind one API. Pass any id from /v1/models as the model field, no redeploys, no new SDKs
anthropic/claude-opus-4.8
Anthropic flagship
openai/gpt-5.6
OpenAI flagship
google/gemini-3.1-pro-preview
Text + vision
openai/sora-2
Text + image to video
moonshotai/kimi-k3
Open flagship, text-to-image
moonshotai/Kimi-K2-Thinking
Long-horizon agentic
Priced per model, see the Models section for what runs on your key

Create a key, copy a snippet, read tokens back