Ox Alpha

Ox Alpha

ox-alphallms.txt
Stealth
Developed by Stealth, Ox Alpha is a reasoning model designed for coding, sustained agentic work, and demanding production workloads. With a massive context length of 1,048,576 tokens, it is ideally suited for long-horizon software engineering and complex reasoning. The model excels at supporting advanced workflows that combine text with other data.

Pricing

  • Input Tokens: $0.000 /M tokens
  • Output Tokens: $0.000 /M tokens
  • Cache Read: $0.000 /M tokens

Input Modalities

  • Text
  • Vision

Output Modalities

  • Text

Capabilities

  • Long context

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://aihubmix.com/v1",
)

response = client.chat.completions.create(
    model="ox-alpha",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

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

Frequently asked questions

What is Ox Alpha?

Developed by Stealth, Ox Alpha is a reasoning model designed for coding, sustained agentic work, and demanding production workloads. With a massive context length of 1,048,576 tokens, it is ideally suited for long-horizon software engineering and complex reasoning. The model excels at supporting advanced workflows that combine text with other data.