agnes-2.5-pro-alpha
Agnes logo

Agnes 2.5 Pro Alpha

agnes-2.5-pro-alpha
Agnes
Agnes 2.5 Pro Alpha is Agnes AI’s paid inference model, suitable for advanced coding, scientific reasoning, long-context analysis, agent workflows, and multimodal understanding. The model is accessed via an OpenAI-compatible Chat Completions API.

Pricing Details

  • Input Tokens: $0.450 /M tokens
  • Output Tokens: $0.900 /M tokens
  • Cache Tokens: $0.004 /M tokens

Input Modalities

  • Text
  • Vision

Output Modalities

  • Text

Features

  • Thinking

Quick Start

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="agnes-2.5-pro-alpha",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

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

FAQ

What is agnes-2.5-pro-alpha?

Agnes 2.5 Pro Alpha is Agnes AI’s paid inference model, suitable for advanced coding, scientific reasoning, long-context analysis, agent workflows, and multimodal understanding. The model is accessed via an OpenAI-compatible Chat Completions API.