For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Login
DocumentationAPI Reference
DocumentationAPI Reference
  • Getting Started
    • Overview
    • Developer Quickstart
  • Models
    • ASI:One Models
    • Model Selection
    • asi1-ultra
    • asi1-mini
  • Build with ASI:One
    • Tool Calling
    • OpenAI Compatibility
    • Image Generation
    • Agentic LLM
    • Structured Data
  • Tutorials
    • Agent Chat Protocol
Login
LogoLogo
On this page
  • Pick your model
  • Shared capabilities
  • Specifications at a glance
  • Use cases
  • Trust and safety
  • Getting started
Models

ASI:One Models

Was this page helpful?
Previous

Choosing the Right ASI:One Model

Next
Built with

ASI:One offers a family of three models that share the same API surface and capability set. Pick asi1 when you want one model that adapts to the request. Pick asi1-ultra when you need maximum reasoning depth and the largest tool budget. Pick asi1-mini when you want the fastest response and the lightest cost profile.

One family, three tradeoffs

asi1 is the adaptive default and a strong starting point for most workloads. Switch to asi1-ultra for deep reasoning and long agentic runs, or to asi1-mini when latency and cost are the constraint.

asi1
asi1-ultra
asi1-mini
$curl -X POST https://api.asi1.ai/v1/chat/completions \
> -H "Content-Type: application/json" \
> -H "Authorization: Bearer $ASI_ONE_API_KEY" \
> -d '{
> "model": "asi1",
> "messages": [
> {"role": "user", "content": "Help me plan a trip to Tokyo"}
> ]
> }'

Pick your model

asi1

The adaptive default

Balances reasoning depth, speed, and cost. Activates the right capabilities based on your prompt. Start here.

Best for: general agent workflows, chat, tool calling, mixed workloads.

asi1-ultra

Deepest reasoning, largest tool budget

Built for long agentic runs, multi-hop research, and complex code or contract analysis. Up to 500 tool calls per turn.

Best for: long-running tasks, deep research, code audits, agent orchestration.

asi1-mini

Fastest, lightest, low-latency

Optimized for low-latency interactive workloads. Same context window as the rest of the family with a smaller cost and response footprint.

Best for: real-time chat, classification, autocomplete, simple tool calls, voice.

For a side-by-side comparison and a decision tree, see Model Selection.


Shared capabilities

Every model in the family supports the same capability set. The differences are in reasoning depth, tool budget, response size, and latency, not in what the models can do.

Agentic Reasoning

Discovers and orchestrates AI agents from the Agentverse marketplace. Activates when a request benefits from specialized agents - booking, research, scheduling, and more. asi1-ultra sustains the longest agent runs.

Extended Reasoning

Multi-step analysis with intermediate validation. asi1-ultra reaches the deepest, useful for code review, contract analysis, research synthesis, and strategic planning.

Fast Inference

Low-latency responses for real-time applications, chatbots, voice assistants, and interactive experiences. asi1-mini is purpose-built for this profile.

Tool Calling

Define your functions and the model decides when and how to call them. asi1-ultra supports up to 500 tool calls per turn for long agentic flows.

Visualization

Generates charts, graphs, and visual representations of data. Transforms datasets into clear, actionable insights.

Web3 Native

Built for blockchain and decentralized applications. Understands smart contracts, tokenomics, and on-chain interactions.


Specifications at a glance

asi1asi1-ultraasi1-mini
PositionAdaptive defaultDeepest reasoningFastest response
Context Window200,000 tokens200,000 tokens200,000 tokens
Max Tool Calls per TurnStandardUp to 500Standard
StreamingSupportedSupportedSupported
OpenAI CompatibilityFull SDKFull SDKFull SDK
Chat Completions API/v1/chat/completions/v1/chat/completions/v1/chat/completions
Responses API/v1/responses/v1/responses/v1/responses
Rate LimitsSee API dashboardSee API dashboardSee API dashboard

The same API key works across all three models. Switch models by changing the model field in the request body.


Use cases

Common applications by model:

Use CaseRecommended ModelWhy
Customer Supportasi1Adapts between fast triage and longer escalation paths
Research and Analysisasi1-ultraSustains multi-hop retrieval and synthesis with citations
Code Generationasi1Handles routine coding tasks with the right depth
Code Review and Auditasi1-ultraDeepest reasoning for catching subtle issues
Content Creationasi1General drafting and editing
Real-time Chatasi1-miniLow latency, short turn-taking
Classification and Routingasi1-miniCheap, fast, deterministic
Voice Assistantsasi1-miniSpeed-critical, short outputs
Long-running Agent Tasksasi1-ultraLargest tool budget, deepest plans
Data Visualizationasi1Generates charts and visual explanations
Web3 Applicationsasi1Smart contract analysis with adaptive depth

Trust and safety

FeatureDescription
Transparent ReasoningView the model’s thought process with reasoning traces
Reduced HallucinationConfidence thresholds and cross-checks keep outputs grounded
Safety FiltersBuilt-in guardrails screen for harmful content
Audit SupportHashed reasoning steps available for compliance logging

Getting started

Developer Quickstart →

Make your first API request in minutes

Model Selection →

Side-by-side comparison and a decision tree

asi1-ultra →

Deepest reasoning, longest agentic runs

asi1-mini →

Fastest response, lowest latency