← ClaudeAtlas

ai-chatlisted

Access 50+ LLM models through a unified OpenAI-compatible API via AceDataCloud. Use when you need chat completions from GPT, Claude, Gemini, Kimi, Grok, or other models through a single endpoint. Supports streaming, function calling, and vision.
AceDataCloud/Skills · ★ 8 · AI & Automation · score 71
Install: claude install-skill AceDataCloud/Skills
# AI Chat — Unified LLM Gateway Access 50+ language models through a single OpenAI-compatible endpoint via AceDataCloud. > **Setup:** See [authentication](../_shared/authentication.md) for token setup. ## Quick Start ```bash curl -X POST https://api.acedata.cloud/v1/chat/completions \ -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{"model": "claude-sonnet-4-20250514", "messages": [{"role": "user", "content": "Hello!"}]}' ``` ## OpenAI SDK Drop-in ```python from openai import OpenAI client = OpenAI( api_key="your-token-here", base_url="https://api.acedata.cloud/v1" ) response = client.chat.completions.create( model="gpt-4.1", messages=[{"role": "user", "content": "Explain quantum computing"}] ) print(response.choices[0].message.content) ``` ## Available Models ### OpenAI GPT | Model | Type | Best For | |-------|------|----------| | `gpt-4.1` | Latest | General-purpose, high quality | | `gpt-4.1-mini` | Small | Fast, cost-effective | | `gpt-4.1-nano` | Tiny | Ultra-fast, lowest cost | | `gpt-4o` | Multimodal | Vision + text | | `gpt-4o-mini` | Small multimodal | Fast vision tasks | | `o1` | Reasoning | Complex reasoning tasks | | `o1-mini` | Small reasoning | Quick reasoning | | `o1-pro` | Pro reasoning | Advanced reasoning | | `gpt-5` | Latest gen | Next-gen intelligence | | `gpt-5.4` | Gen 5.4 | High-performance next-gen | | `gpt-5-mini` | Mini gen 5 | Fast next-gen | ### Anthropic Claude | Mod