> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anyone.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# 产品介绍

> 聚合 40+ AI 模型，一个 API key 全搞定。

**一个 API key，接入所有主流 AI 模型。**

Anyone 帮你省去注册多个 AI 平台、管理多套 API key 的麻烦。只需在 Anyone 获取一个 API key，就能调用 GPT-5.4、Claude、Gemini、DeepSeek 等 40+ 模型——用你熟悉的 OpenAI SDK，改个 base URL 就行。

```python theme={null}
from openai import OpenAI

client = OpenAI(
    base_url="https://api.anyone.ai/v1",  # 就改这一行
    api_key="你的 Anyone API key",
)

# 用同一个 client 调用任何模型
response = client.chat.completions.create(
    model="claude-sonnet-4-6",  # 或 gpt-5.4 / gemini-3.1-pro-preview / DeepSeek-V3.2
    messages=[{"role": "user", "content": "你好！"}],
)
```

## 为什么用 Anyone？

<CardGroup cols={2}>
  <Card title="一个 key 用所有模型" icon="key">
    不用注册 OpenAI、Anthropic、Google 等多个平台。一个 Anyone API key 搞定全部。
  </Card>

  <Card title="完全兼容 OpenAI SDK" icon="plug">
    用 OpenAI 的 Python/JS SDK 就能调 Claude、Gemini 等其他模型，零代码改动。
  </Card>

  <Card title="40+ 模型随时切换" icon="shuffle">
    GPT-5.4、Claude Sonnet 4.6、Gemini 3.1 Pro、DeepSeek、Mistral、Llama……想用哪个换个 model 名就行。
  </Card>

  <Card title="按量计费，用多少付多少" icon="circle-dollar-to-slot">
    充值即用，按 token 消耗扣费，价格透明。控制台实时查看用量。
  </Card>
</CardGroup>

## 支持的模型

| 服务商       | 代表模型                              |
| --------- | --------------------------------- |
| OpenAI    | GPT-5.4、GPT-5.3-Codex             |
| Anthropic | Claude Opus 4.6、Claude Sonnet 4.6 |
| Google    | Gemini 3.1 Pro                    |
| DeepSeek  | DeepSeek-V3.2                     |
| 智谱 AI     | GLM-5.1                           |
| xAI       | Grok-4.20                         |
| MiniMax   | MiniMax-M2.5                      |
| 月之暗面      | Kimi-K2.5                         |

## 支持的 API 格式

你可以用以下任意格式发送请求，Anyone 自动转换：

| 格式                      | 端点                                            |
| ----------------------- | --------------------------------------------- |
| OpenAI Chat Completions | `/v1/chat/completions`                        |
| OpenAI Responses        | `/v1/responses`                               |
| Claude Messages         | `/v1/messages`                                |
| Google Gemini           | `/v1beta/models/{model}:generateContent`      |
| Embeddings              | `/v1/embeddings`                              |
| 图像生成                    | `/v1/images/generations`                      |
| 语音                      | `/v1/audio/transcriptions`、`/v1/audio/speech` |

<Card title="3 分钟上手" icon="rocket" href="/zh/quickstart">
  注册 → 获取 token → 发送第一个请求，就这么简单。
</Card>
