Agents A1 (free)
intern-ai logo

Agents A1 (free)

agents-a1-freellms.txt
intern-ai
New
Agents-A1 is a 35B Mixture-of-Experts (MoE) agentic model developed by InternScience for complex, long-horizon tasks across search, engineering, scientific research, instruction following, and tool use. The model is trained to scale both long-horizon agent trajectories and heterogeneous agent capabilities through a multi-stage training framework that combines full-domain supervised fine-tuning, domain-specialized teacher models, and multi-teacher on-policy distillation. Agents-A1 supports both text and image inputs and is designed for general-purpose agent workflows that require multi-step reasoning, planning, tool interaction, and sustained task execution.

Pricing

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

Input Modalities

  • Text
  • Vision

Output Modalities

  • Text

Context length

  • 262K tokens

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

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

Frequently asked questions

What is Agents A1 (free)?

Agents-A1 is a 35B Mixture-of-Experts (MoE) agentic model developed by InternScience for complex, long-horizon tasks across search, engineering, scientific research, instruction following, and tool use. The model is trained to scale both long-horizon agent trajectories and heterogeneous agent capabilities through a multi-stage training framework that combines full-domain supervised fine-tuning, domain-specialized teacher models, and multi-teacher on-policy distillation. Agents-A1 supports both text and image inputs and is designed for general-purpose agent workflows that require multi-step reasoning, planning, tool interaction, and sustained task execution.