Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Query the ASI:One LLM — the AI model by the ASI Alliance (Fetch.ai + SingularityNET + Ocean Protocol). OpenAI-compatible API. Supports asi1 (default) and asi1-mini models. Requires ASI_ONE_API_KEY env var. Use when asked to "use ASI", "query ASI:One", or "use the Fetch.ai LLM".
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-06 | ✗→✓ | ▲ Improved | 5% | 0% |
| case-01 | ✗→✓ | ▲ Improved | 58% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 39% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 544% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 15% | 0% |
Query the ASI:One large language model — built by the Artificial Superintelligence (ASI) Alliance. OpenAI-compatible API with asi1 (default, recommended) and asi1-mini (faster, lighter) models.
ASI_ONE_API_KEY environment variable setrequestsbashpython3 scripts/asi1_chat.py --prompt "Explain the ASI Alliance in 3 sentences"
bashpython3 scripts/asi1_chat.py \ --prompt "What are the benefits of decentralized AI?" \ --system "You are a blockchain and AI expert. Be concise." \ --model asi1
bashpython3 scripts/asi1_chat.py --prompt "Write a haiku about AI agents" --stream
json{ "status": "success", "model": "asi1", "response": "The ASI Alliance is a collaboration between Fetch.ai, SingularityNET, and Ocean Protocol...", "usage": { "prompt_tokens": 12, "completion_tokens": 87, "total_tokens": 99 } }
https://api.asi1.ai/v1/chat/completionsasi1 (default, recommended), asi1-mini (faster, lighter)Authorization: Bearer {ASI_ONE_API_KEY}pythonfrom openai import OpenAI client = OpenAI( api_key=os.environ["ASI_ONE_API_KEY"], base_url="https://api.asi1.ai/v1" ) response = client.chat.completions.create( model="asi1", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content)
--max-tokens or use --stream for real-time output. Use asi1-mini if you need lower latency.--stream for real-time output on long responsesASI:One is the AI model from the ASI Alliance — a merger of:
The ASI token (formerly FET) is the native token of the ecosystem.
Other measured skills in the registry, with their headline benchmark lift.