OpenModex
DeepSeek·Chat

DeepSeek R1

DeepSeek R1 is an advanced reasoning model that uses chain-of-thought to tackle complex problems. It shows exceptional performance on mathematics, coding, and science benchmarks, often matching or exceeding models many times its price point.

Pricing

OpenModex PriceBYOK
Input /1M tokens$0.47Pass-through
Output /1M tokens$1.86Pass-through

Benchmarks

87.5%

MMLU

89.4%

HumanEval

85.7%

MATH

62.3%

GPQA

API Usage Example

from openai import OpenAI

# Just change base_url  your existing code works
client = OpenAI(
    api_key="omx_sk_...",
    base_url="https://api.openmodex.com/v1",
)

response = client.chat.completions.create(
    model="deepseek-r1",
    messages=[{"role": "user", "content": "Hello!"}],
)

print(response.choices[0].message.content)