← ClaudeAtlas

ai-chatlisted

Access 50+ LLM models through AceDataCloud's unified chat APIs. Use when you need OpenAI-compatible chat/responses calls or the newer `/aichat2/conversations` API across GPT, Claude, Gemini, Grok, Kimi, GLM, and DeepSeek models. Supports streaming, multimodal input, and tool calling.
AceDataCloud/Skills · ★ 13 · AI & Automation · score 73
Install: claude install-skill AceDataCloud/Skills
# AI Chat — Unified LLM Gateway AceDataCloud exposes two documented chat surfaces: | Endpoint | Use For | |----------|---------| | `POST /aichat2/conversations` | Recommended stateful / multimodal / agentic conversations | | `POST /aichat/conversations` | Legacy conversation endpoint | | `POST /openai/chat/completions` | OpenAI-compatible stateless chat completions | | `POST /openai/responses` | OpenAI-compatible responses API | > **Setup:** See [authentication](../_shared/authentication.md) for token setup. ## Quick Start ### Recommended: stateful conversations ```bash curl -X POST https://api.acedata.cloud/aichat2/conversations \ -H "Authorization: ******ACEDATACLOUD_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{"model":"gpt-4.1","question":"Summarize the latest release notes.","stateful":true}' ``` ### OpenAI-compatible SDK ```python from openai import OpenAI client = OpenAI( api_key="your-token-here", base_url="https://api.acedata.cloud/openai" ) response = client.chat.completions.create( model="gpt-5.5", messages=[{"role": "user", "content": "Explain quantum computing"}] ) print(response.choices[0].message.content) ``` ## Currently Documented Model Families The OpenAPI specs expose a broad, fast-moving model catalog. Representative current models include: | Family | Current examples | |--------|------------------| | OpenAI / reasoning | `gpt-5.6-luna`, `gpt-5.6-terra`, `gpt-5.6-sol`, `gpt-5.5`, `gpt-5.5-pro`, `gpt-5.4`, `gpt-5