← ClaudeAtlas

asi1-chatlisted

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".
fetchai/agentverse-skills · ★ 2 · AI & Automation · score 81
Install: claude install-skill fetchai/agentverse-skills
# ASI:One Chat ## Overview 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. ## When to Use - User asks to "use ASI:One" or "query the ASI LLM" - User asks to "use Fetch.ai's AI model" - User wants an alternative to OpenAI/Anthropic for a specific query - User asks about ASI Alliance AI capabilities ## Prerequisites - `ASI_ONE_API_KEY` environment variable set - Get one at: https://asi1.ai (sign up → API keys) - Python 3.8+ with `requests` ## Quick Steps ### 1. Simple query ```bash python3 scripts/asi1_chat.py --prompt "Explain the ASI Alliance in 3 sentences" ``` ### 2. With system prompt ```bash python3 scripts/asi1_chat.py \ --prompt "What are the benefits of decentralized AI?" \ --system "You are a blockchain and AI expert. Be concise." \ --model asi1 ``` ### 3. Streaming mode ```bash python3 scripts/asi1_chat.py --prompt "Write a haiku about AI agents" --stream ``` ### 4. Output ```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 } } ``` ## API Details - **Base URL**: `https://api.asi1.ai/v1` - **Endpoint**: `/chat/completions` - **Models**: `asi1` (default, recommended), `asi1-mini` (faster, lighter) - **Fo