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

# 咏唱引擎平台更新日志

> 阅读咏唱引擎平台发布说明，并通过 GET /api/changelog 以编程方式获取，便于嵌入你自己的工具。

咏唱引擎更新日志记录产品发布、破坏性变更与值得关注的改进。它通过 API 公开提供，并渲染在营销站点上。

## 获取更新日志条目

```bash theme={null}
curl -s https://ariacompute.cn/api/changelog | jq .
```

```json theme={null}
{
  "entries": [
    {
      "id": "chg_01H...",
      "title": "为语言模型引入 INT3.26 量化",
      "date": "2026-09-15",
      "tags": ["models", "release"],
      "body": "int326 量化现已可用于 gemma-4 系列……"
    }
  ]
}
```

<ResponseField name="entries" type="object[]">
  最新在前。

  <Expandable>
    <ResponseField name="id" type="string">
      稳定的条目标识符。
    </ResponseField>

    <ResponseField name="title" type="string">
      简短标题。
    </ResponseField>

    <ResponseField name="date" type="string">
      发布日期（YYYY-MM-DD）。
    </ResponseField>

    <ResponseField name="tags" type="string[]">
      分类标签。
    </ResponseField>

    <ResponseField name="body" type="string">
      Markdown 格式的发布说明。
    </ResponseField>
  </Expandable>
</ResponseField>

管理员在控制台发布与编辑条目；相同内容通过公开接口提供。

## 相关

* [站点元数据](/api-reference/site/site)
* [引擎最新发布](/api-reference/downloads/engine-latest)
