ai-chat

Access 50+ LLM models through a unified OpenAI-compatible API via AceDataCloud. Use when you need chat completions from GPT, Claude, Gemini, DeepSeek, Grok, or other models through a single endpoint. Supports streaming, function calling, and vision.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "ai-chat" with this command: npx skills add acedatacloud/acedatacloud-ai-chat

AI Chat — Unified LLM Gateway

Access 50+ language models through a single OpenAI-compatible endpoint via AceDataCloud.

Authentication

export ACEDATACLOUD_API_TOKEN="your-token-here"

Quick Start

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

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

ModelTypeBest For
gpt-4.1LatestGeneral-purpose, high quality
gpt-4.1-miniSmallFast, cost-effective
gpt-4.1-nanoTinyUltra-fast, lowest cost
gpt-4oMultimodalVision + text
gpt-4o-miniSmall multimodalFast vision tasks
o1ReasoningComplex reasoning tasks
o1-miniSmall reasoningQuick reasoning
o1-proPro reasoningAdvanced reasoning
gpt-5Latest genNext-gen intelligence
gpt-5-miniMini gen 5Fast next-gen

Anthropic Claude

ModelTypeBest For
claude-opus-4-6Latest OpusHighest capability
claude-sonnet-4-6Latest SonnetBalanced quality/speed
claude-opus-4-5-20251101Opus 4.5Premium tasks
claude-sonnet-4-5-20250929Sonnet 4.5High-quality balance
claude-sonnet-4-20250514Sonnet 4Reliable general-purpose
claude-haiku-4-5-20251001Haiku 4.5Fast, efficient
claude-3-5-sonnet-20241022Legacy 3.5Proven track record
claude-3-opus-20240229Legacy OpusMaximum quality (legacy)

Google Gemini

ModelBest For
gemini-1.5-proLong context, complex tasks
gemini-1.5-flashFast, efficient

DeepSeek

ModelBest For
deepseek-r1Deep reasoning
deepseek-r1-0528Latest reasoning
deepseek-v3General-purpose
deepseek-v3-250324Latest general

xAI Grok

ModelBest For
grok-4Latest, highest capability
grok-3General-purpose
grok-3-fastSpeed-optimized
grok-3-miniCompact, efficient

Features

Streaming

POST /v1/chat/completions
{
  "model": "claude-sonnet-4-20250514",
  "messages": [{"role": "user", "content": "Write a story"}],
  "stream": true
}

Function Calling

POST /v1/chat/completions
{
  "model": "gpt-4.1",
  "messages": [{"role": "user", "content": "What's the weather in Tokyo?"}],
  "tools": [
    {
      "type": "function",
      "function": {
        "name": "get_weather",
        "parameters": {"type": "object", "properties": {"location": {"type": "string"}}}
      }
    }
  ]
}

Vision

POST /v1/chat/completions
{
  "model": "gpt-4o",
  "messages": [
    {
      "role": "user",
      "content": [
        {"type": "text", "text": "What's in this image?"},
        {"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}}
      ]
    }
  ]
}

Parameters

ParameterTypeDescription
modelstringModel name (see tables above)
messagesarrayArray of {role, content} objects
temperature0–2Randomness (default: 1)
top_p0–1Nucleus sampling
max_tokensintegerMaximum output tokens
streambooleanEnable SSE streaming
toolsarrayFunction calling definitions
tool_choicestring/objectTool selection strategy

Response

{
  "id": "chatcmpl-xxx",
  "object": "chat.completion",
  "model": "claude-sonnet-4-20250514",
  "choices": [
    {
      "index": 0,
      "message": {"role": "assistant", "content": "Hello!"},
      "finish_reason": "stop"
    }
  ],
  "usage": {
    "prompt_tokens": 10,
    "completion_tokens": 5,
    "total_tokens": 15
  }
}

Gotchas

  • 100% OpenAI-compatible — use the standard OpenAI SDK with base_url="https://api.acedata.cloud/v1"
  • Billing is token-based with per-model pricing (more expensive models cost more per token)
  • Vision is supported on multimodal models (gpt-4o, gpt-4o-mini, grok-2-vision-*)
  • Function calling works on most modern models (GPT-4+, Claude 3+)
  • Streaming returns chat.completion.chunk objects via SSE
  • finish_reason values: "stop" (complete), "length" (max tokens), "tool_calls" (function call), "content_filter" (filtered)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Huo15 Openclaw Enhance

火一五·克劳德·龙虾增强插件 v5.7.8 — 全面适配 openclaw 2026.4.24:peerDep ^4.24 + build/compat 同步到 4.24 + 14 处 api.on 全部去掉 as any 改成 typed hook(hookName 联合类型 + handler 自动推断 Pl...

Registry SourceRecently Updated
General

Content Trend Analyzer

Aggregates and analyzes content trends across platforms to identify hot topics, user intent, content gaps, and generates data-driven article outlines.

Registry SourceRecently Updated
General

Prompt Debugger

Debug prompts that produce unexpected AI outputs — diagnose failure modes, identify ambiguity and conflicting instructions, test variations, compare model re...

Registry SourceRecently Updated
General

Indie Maker News

独行者 Daily - 变现雷达。读对一条新闻,少走一年弯路。每天5分钟,给创业者装上商业雷达。聚焦一人公司、副业、创业变现资讯,智能分类,行动导向。用户下载即能用,无需本地部署!

Registry SourceRecently Updated