> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-chore-sync-comfy-api-v2-spec.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 将 Claude Fable 5.1 与 Comfy Router 配合使用

> 通过 Comfy Router 调用 anthropic/claude-fable-5-1：endpoint、请求结构以及 Router 返回的响应。

`anthropic/claude-fable-5-1` 的 API 参考文档，由 Comfy Router 从 Anthropic 提供。

## 快速开始

在[你的 Comfy 工作区](https://platform.comfy.org/profile/api-keys)中创建一个密钥，并将其导出为 `COMFY_API_KEY`。Python 和 TypeScript 代码片段使用 Comfy SDK（`pip install comfy-sdk`、`npm install @comfyorg/sdk`）；cURL 代码片段是通过原始 HTTP 发起的相同调用。

**模型 ID：** `anthropic/claude-fable-5-1`

**端点：** `POST https://api.comfy.org/v2/models/anthropic/claude-fable-5-1`

<Tabs>
  <Tab title="Wait for the result">
    <CodeGroup>
      ```python Python theme={null}
      from comfy_sdk import Comfy

      # Reads COMFY_API_KEY from the environment.
      # The SDK automatically creates an idempotency key and reuses it for automatic retries.
      with Comfy() as client:
          result = client.models.run(
              "anthropic/claude-fable-5-1",
              {
                  "max_tokens": 16,
                  "messages": [
                      {
                          "content": "Reply with the single word: ok",
                          "role": "user",
                      },
                  ],
              },
          )

      print(result)
      ```

      ```typescript TypeScript theme={null}
      import { comfy } from "@comfyorg/sdk";

      // Reads COMFY_API_KEY from the environment.
      // The SDK automatically creates an idempotency key and reuses it for automatic retries.
      const { data } = await comfy.models.run("anthropic/claude-fable-5-1", {
        max_tokens: 16,
        messages: [
          {
            content: "Reply with the single word: ok",
            role: "user",
          },
        ],
      });

      console.log(data);
      ```

      ```bash cURL theme={null}
      curl https://api.comfy.org/v2/models/anthropic/claude-fable-5-1 \
        -H "X-API-Key: $COMFY_API_KEY" \
        -H "Idempotency-Key: $(uuidgen)" \
        -H "Content-Type: application/json" \
        -d "{\"max_tokens\": 16, \"messages\": [{\"content\":\"Reply with the single word: ok\",\"role\":\"user\"}]}"
      ```
    </CodeGroup>
  </Tab>

  <Tab title="Queue and collect later">
    <CodeGroup>
      ```python Python theme={null}
      from comfy_sdk import Comfy

      # Reads COMFY_API_KEY from the environment.
      # Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
      with Comfy() as client:
          handle = client.models.submit(
              "anthropic/claude-fable-5-1",
              {
                  "max_tokens": 16,
                  "messages": [
                      {
                          "content": "Reply with the single word: ok",
                          "role": "user",
                      },
                  ],
              },
          )
          print("request_id:", handle.request_id)  # with the model ID, all another process needs

          # Poll until the request completes, waiting the Retry-After the server names.
          for update in handle.iter_events():
              print(update.status, update.queue_position)

          # The provider's own payload, the same value models.run() returns.
          # A request that failed or was cancelled raises the typed Router error here.
          result = handle.get()

      print(result)
      ```

      ```typescript TypeScript theme={null}
      import { comfy } from "@comfyorg/sdk";

      // Reads COMFY_API_KEY from the environment.
      // Each submit() call mints its own Idempotency-Key and reuses it for automatic retries.
      const handle = await comfy.models.submit("anthropic/claude-fable-5-1", {
        max_tokens: 16,
        messages: [
          {
            content: "Reply with the single word: ok",
            role: "user",
          },
        ],
      });
      console.log("requestId:", handle.requestId); // with the model ID, all another process needs

      // Poll until the request completes, waiting the Retry-After the server names.
      for await (const update of handle.events()) {
        console.log(update.status, update.queuePosition);
      }

      // The same result models.run() returns. A request that failed or was cancelled rejects here.
      const result = await handle.get();

      console.log(result.data);
      ```

      ```bash cURL theme={null}
      # 1. Submit. Router answers 201 with request_id, status_url, response_url and cancel_url.
      curl https://api.comfy.org/v2/models/anthropic/claude-fable-5-1/requests \
        -H "X-API-Key: $COMFY_API_KEY" \
        -H "Idempotency-Key: $(uuidgen)" \
        -H "Content-Type: application/json" \
        -d "{\"max_tokens\": 16, \"messages\": [{\"content\":\"Reply with the single word: ok\",\"role\":\"user\"}]}"

      # 2. Poll until status is COMPLETED, waiting the Retry-After seconds each response names.
      REQUEST_ID="<request_id from the 201 body>"
      curl -i https://api.comfy.org/v2/models/anthropic/claude-fable-5-1/requests/$REQUEST_ID/status \
        -H "X-API-Key: $COMFY_API_KEY"

      # 3. Collect. 200 with the model's native output, 202 with the status body while it is still running.
      curl https://api.comfy.org/v2/models/anthropic/claude-fable-5-1/requests/$REQUEST_ID \
        -H "X-API-Key: $COMFY_API_KEY"
      ```
    </CodeGroup>
  </Tab>
</Tabs>

## Schema

### 输入

<ParamField body="max_tokens" type="integer" required>
  停止之前可生成的最大 token 数量。
</ParamField>

<ParamField body="messages" type="object[]" required>
  对话轮次。完整的内容块分类请参阅 Anthropic Messages API 文档。
</ParamField>

<ParamField body="messages[].content" type="object" required>
  可以是字符串简写，也可以是内容块数组（text、image、document、tool\_use、tool\_result……）。
</ParamField>

<ParamField body="messages[].role" type="string" required>
  可能的值：`user`、`assistant`
</ParamField>

<ParamField body="model" type="string">
  Anthropic 模型标识符（例如 `claude-sonnet-4-5`、`claude-opus-4-7`）。
</ParamField>

<ParamField body="stream" type="boolean">
  当该值为 true 时，响应是 Anthropic 消息事件的 `text/event-stream`，而不是单个 JSON 正文。
</ParamField>

<ParamField body="system" type="object">
  顶层的 system 提示词。可以是字符串，也可以是内容块数组；两者都会原样传递给 Anthropic。
</ParamField>

该文档由 Router 在 `GET /v2/models/anthropic/claude-fable-5-1/openapi.json` 提供的 schema 生成，Router 在请求到达提供商之前，就是用同一份文档来校验调用的。

### 输出

<ResponseField name="id" type="string" />

<ResponseField name="model" type="string" />

<ResponseField name="role" type="string" />

<ResponseField name="stop_reason" type="string" />

<ResponseField name="stop_sequence" type="string" />

<ResponseField name="type" type="string" />

<ResponseField name="usage" type="object">
  Anthropic Messages API 调用的 token 用量。
</ResponseField>

<ResponseField name="usage.cache_creation" type="object">
  Anthropic Messages API 调用中缓存写入输入 token 的按 TTL 细分。
</ResponseField>

<ResponseField name="usage.cache_creation.ephemeral_1h_input_tokens" type="integer" />

<ResponseField name="usage.cache_creation.ephemeral_5m_input_tokens" type="integer" />

<ResponseField name="usage.cache_creation_input_tokens" type="integer" />

<ResponseField name="usage.cache_read_input_tokens" type="integer" />

<ResponseField name="usage.input_tokens" type="integer" />

<ResponseField name="usage.output_tokens" type="integer" />

<ResponseField name="content" type="object[]" required>
  回复的内容块，按顺序排列。每条已完成的消息都会包含该字段；当该轮次没有产生任何内容时为空。
</ResponseField>

<ResponseField name="content[].text" type="string">
  该块的文本。仅在 `text` 块中存在，其他类型的块中不存在。
</ResponseField>

<ResponseField name="content[].type" type="string">
  块的类型。`text` 是携带 `text` 字段的那一种；`thinking`、`redacted_thinking`、`tool_use`、`server_tool_use` 以及工具结果块是 Anthropic 目前发送的其他类型，且该列表是开放的。
</ResponseField>

## 示例

### 输入

```json theme={null}
{
  "max_tokens": 16,
  "messages": [
    {
      "content": "Reply with the single word: ok",
      "role": "user"
    }
  ]
}
```

### 输出

```json theme={null}
{
  "content": [
    {
      "text": "ok",
      "type": "text"
    }
  ],
  "id": "msg_01ExampleInvalidPlaceholder",
  "model": "claude-fable-5-1",
  "role": "assistant",
  "stop_reason": "end_turn",
  "stop_sequence": null,
  "type": "message",
  "usage": {
    "input_tokens": 16,
    "output_tokens": 3
  }
}
```

## 发布前须知

SDK 会生成 `Idempotency-Key` 并在自动重试中复用它。手动重试时，请复用原始 key。Router 最长可保持连接 10 分钟。

请求失败时，Router 会发送 `X-Comfy-Error-Type` 响应头说明原因。`422` 表示 Router 在调用提供商之前就拒绝了输入。生成的资源请及时下载，因为[结果链接会过期](/zh/development/comfy-router/reference#结果资产)。

<CardGroup cols={3}>
  <Card title="请求头" icon="list" href="/zh/development/comfy-router/quickstart">
    身份验证、幂等性、请求 ID、错误分类、重试节奏、消费限额。
  </Card>

  <Card title="使用 Router API" icon="code" href="/zh/development/comfy-router/quickstart">
    模型发现、校验错误、重试与计费。
  </Card>

  <Card title="限制" icon="triangle-exclamation" href="/zh/development/comfy-router/limitations">
    Router 目前不支持的功能，以及替代方案。
  </Card>
</CardGroup>
