agnes-2.5-pro
Agnes logo

Agnes 2.5 Pro

agnes-2.5-pro
Agnes
Agnes 2.5 Pro is Agnes AI’s paid inference model and the commercially stable version of the Agnes 2.5 Pro Alpha ranking 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",
    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?

Agnes 2.5 Pro is Agnes AI’s paid inference model and the commercially stable version of the Agnes 2.5 Pro Alpha ranking 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.