Skillquality 0.45

ai-chat

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.

Price
free
Protocol
skill
Verified
no

What it does

AI Chat — Unified LLM Gateway

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

Setup: See authentication for token setup.

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.4Gen 5.4High-performance next-gen
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

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)

Stateful Conversations Endpoint

For stateful, session-based chat (no need to send the full history each time), use the /aichat/conversations endpoint:

curl -X POST https://api.acedata.cloud/aichat/conversations \
  -H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"model": "gpt-4.1", "question": "What is quantum computing?", "stateful": true}'
ParameterTypeDescription
modelstringModel name (see Available Models above)
questionstringThe prompt or question to answer
idstringConversation ID — pass the same ID to continue a session
presetstringPreset/system prompt for the conversation
statefulbooleanEnable stateful conversation (maintains history server-side)
referencesarrayAdditional context documents to include

Capabilities

skillsource-acedatacloudskill-ai-chattopic-acedata-cloudtopic-agent-skillstopic-agentskillstopic-ai-imagetopic-ai-musictopic-ai-toolstopic-ai-videotopic-claude-codetopic-cursortopic-gemini-clitopic-github-copilottopic-mcp

Install

Installnpx skills add AceDataCloud/Skills
Transportskills-sh
Protocolskill

Quality

0.45/ 1.00

deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 7 github stars · SKILL.md body (5,603 chars)

Provenance

Indexed fromgithub
Enriched2026-05-18 19:14:01Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18

Agent access