grok-3-fast

Display Name: Grok 3 Fast
X-AI
X-AI
Released on Feb 17 12:00 AM

grok-3-fast is a model provided by Unassigned

Specifications

Context131,072
Maximum Output128,000
Inputtext
Outputtext, json

Performance (7-day Average)

Uptime
TPS

Pricing

Input$5.50/MTokens
Cached Input$1.38/MTokens
Output$27.50/MTokens

Usage Statistics

No usage data available for this model during the selected period
View your usage statistics for this model

Code Examples

Use the OpenAI Python SDK to call this model. Replace your-api-key with your API key.

python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.ohmygpt.com/v1",
    api_key="your-api-key",  # Replace with your API key
)

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

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