> ## 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.

# 最新的引擎、路由、Agent 与 Memo 发布

> 从 GitHub 或 Gitee 返回最新 aria-engine、aria-router、aria-agent 与 aria-memo 发布资源的公开接口。

四个公开接口暴露咏唱引擎运行时二进制文件的最新发布版本。各营销站点的下载页消费这些接口。你也可以直接调用它们来编写安装脚本或获取校验和。

## 接口

| 接口                                | 资源                                   |
| --------------------------------- | ------------------------------------ |
| `GET /api/download/engine-latest` | `aria-engine` + `libaria-engine_ffi` |
| `GET /api/download/router-latest` | `aria-router` + `libaria-router_ffi` |
| `GET /api/download/agent-latest`  | `aria-agent`                         |
| `GET /api/download/memo-latest`   | `aria-memo`                          |

这四个接口均免认证。国际站从 GitHub（`ariacompute/*`）拉取，中国站从 Gitee 镜像拉取。

## 示例

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

```json theme={null}
{
  "tag_name": "v0.7.2",
  "name": "Aria Engine v0.7.2",
  "prerelease": false,
  "published_at": "2026-09-01T12:00:00Z",
  "assets": [
    {
      "name": "aria-engine-linux-x86_64.tar.gz",
      "url": "https://github.com/ariacompute/engine/releases/download/v0.7.2/...",
      "size": 84210341,
      "content_type": "application/gzip"
    },
    {
      "name": "libaria-engine_ffi-linux-x86_64.so",
      "url": "https://github.com/ariacompute/engine/releases/download/v0.7.2/...",
      "size": 12345678,
      "content_type": "application/octet-stream"
    }
  ]
}
```

每个接口都返回相同的结构。从 `assets` 数组中挑选匹配你平台的资源并直接下载。

<Tip>
  中国站返回 Gitee URL，以便从中国大陆下载时保持高速。优先选择离用户最近的站点。
</Tip>
