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

# 模型广场介绍

> SeeOneAPI 支持的所有模型一览

## 可用模型

SeeOneAPI 目前提供以下厂商的模型：

<CardGroup cols={2}>
  <Card title="Claude 系列" icon="brain" href="/models/claude">
    Anthropic 出品，编程和推理能力领先。支持 Claude 4.5 / 4 / 3.5 全系列，含 Thinking 模式。
  </Card>

  <Card title="GPT 系列" icon="microchip" href="/models/gpt">
    OpenAI 出品，全能多模态。支持 GPT-4o / 4.1 / o3 / o4-mini 及 gpt-image-2 图像生成。
  </Card>
</CardGroup>

<Info>
  最新可用模型和实时定价，请查看 [模型广场](https://www.seeoneapi.com/pricing)。
</Info>

## 模型选择指南

| 场景         | 推荐模型                           | 理由                    |
| ---------- | ------------------------------ | --------------------- |
| 日常编程开发     | Claude Sonnet 4.5              | SWE-bench 77.2%，性价比极高 |
| 复杂推理 / 数学  | Claude Opus 4.5 / o3           | 顶级推理能力                |
| 快速分类 / 摘要  | Claude Haiku 4.5 / GPT-4o-mini | 速度快、成本低               |
| 图文理解 / 多模态 | GPT-4o                         | 原生多模态支持               |
| 超长文档处理     | GPT-4.1                        | 1M 上下文窗口              |
| 图像生成       | gpt-image-2                    | 支持 4K 超清输出            |
| 需要推理过程     | Sonnet 4.5 Thinking            | 显示完整思维链               |

## 统一 API 格式

所有模型统一使用 OpenAI 兼容格式调用——不管调 Claude 还是 GPT，代码写法完全一样，只改 `model` 参数：

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

client = OpenAI(
    api_key="sk-你的API密钥",
    base_url="https://api.seeoneapi.com/v1"
)

# 调用 Claude
client.chat.completions.create(model="claude-sonnet-4-5-20250929", ...)

# 调用 GPT —— 只改 model，其他一字不动
client.chat.completions.create(model="gpt-4o", ...)
```

## 新模型上线通知

我们会在新模型可用后第一时间接入并更新文档。关注我们获取最新动态：

* Telegram 频道：[@SeeOneAPI](https://t.me/seeoneapi)
