openai/o1
Aliases: o1-pro
$15.00
Input / 1M
$60.00
Output / 1M
200K
Context
35 t/s
Speed
Public benchmark scores
Sourced from each provider's published numbers. Verify before quoting.
Quality index
85
MMLU
92.3
GPQA
78
HumanEval
89
MATH
94.8
SWE-bench
48.9
Arena Elo
—
Sources: openai-research-page
Capabilities
toolsvisionstructured_outputstreamingthinking
Input modalities: text, image, file
Use o1 via Relay
Configure the model alias in YAML, then call it from Python.
YAML
# models.yaml
version: 1
models:
o1-pro:
target: openai/o1
credential: $env.OPENAI_API_KEYPython
from relay import Hub
async with Hub.from_yaml("models.yaml") as hub:
resp = await hub.chat(
"o1-pro",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.text, resp.cost_usd)pip install ai5labs-relay · full docs on GitHub