ASI:One Agentic
Agent-selecting LLMs for autonomous objective fulfilment
What is “Agentic”?
Agentic models have two super-powers beyond ordinary chat completion:
- Agent Discovery – given an objective, they search the Agentverse marketplace, rank relevant agents (tools), and output structured manifests (
tool_name
,arguments
,confidence
). - Delegation Planning – they compose a mini-plan describing how to coordinate the selected agents to achieve the user goal.
Three Variants – Pick What Fits Your Latency & Depth
All three share the same JSON schema for discovery outputs, so you can swap them without changing downstream code.
How They Work (High-Level)
- Intent Parsing – the model converts natural language into a structured goal.
- Marketplace Query – embedded vector search + rule filters retrieve top agents.
- Ranking & Scoring – reasoning layer scores fitness, cost, and safety guards.
- Plan Emission – returns an ordered list of agent calls with argument schemas.
- Monitoring Loop (optional) – extended variant updates the plan as agents report progress.
Quick-Start Call
The response’s executable_data
array contains the ranked agent list plus a short coordination plan.
Guidance on Choosing
- Start with
asi1-agentic
for general web & chat apps – balanced speed and reasoning. - Upgrade to
asi1-fast-agentic
when sub-second latency matters (voice, HFT, IoT). - Switch to
asi1-extended-agentic
for compliance workflows, multi-hour jobs, or when transparency of every reasoning step is mandatory.
All variants can be mixed in the same project — e.g. Fast for initial discovery, Extended for final audit.
Trust & Safety
Need a deeper dive? Check the Chat Completion guidefor full request options.