docs: 更新 README 项目定位描述,截图改为外链,新增 Aether Proxy 介绍段落

- 项目描述从"开源 AI API 网关"调整为"一站式 AI 基础设施平台"
- 移除内嵌截图,改为指向 GitHub Pages 的外链
- 新增 Aether Proxy 简介段落
- 精简部分 FAQ 内容
- aether-proxy 版本升至 0.1.6
This commit is contained in:
fawney19
2026-02-22 01:37:04 +08:00
parent 41835c8afe
commit 1a45d0aa87
13 changed files with 13 additions and 46 deletions

View File

@@ -5,8 +5,8 @@
<h1 align="center">Aether</h1> <h1 align="center">Aether</h1>
<p align="center"> <p align="center">
<strong>开源 AI API 网关</strong><br> <strong>一站式 AI 基础设施平台</strong><br>
支持 Claude / OpenAI / Gemini 及其 CLI 客户端的统一接入 支持 Claude / OpenAI / Gemini 及其 CLI 客户端的统一接入、格式转换、正/反向代理, 致力于成为用户驱动AI服务的底座
</p> </p>
<p align="center"> <p align="center">
<a href="#简介">简介</a> • <a href="#简介">简介</a> •
@@ -22,27 +22,7 @@
Aether 是一个自托管的 AI API 网关,为团队和个人提供多租户管理、智能负载均衡、成本配额控制和健康监控能力。通过统一的 API 入口,可以无缝对接 Claude、OpenAI、Gemini 等主流 AI 服务及其 CLI 工具。 Aether 是一个自托管的 AI API 网关,为团队和个人提供多租户管理、智能负载均衡、成本配额控制和健康监控能力。通过统一的 API 入口,可以无缝对接 Claude、OpenAI、Gemini 等主流 AI 服务及其 CLI 工具。
### 页面预览 页面预览: https://fawney19.github.io/Aether/
| 首页 | 仪表盘 |
|:---:|:---:|
| ![首页](docs/screenshots/home.png) | ![仪表盘](docs/screenshots/dashboard.png) |
| 健康监控 | 用户管理 |
|:---:|:---:|
| ![健康监控](docs/screenshots/health.png) | ![用户管理](docs/screenshots/users.png) |
| 提供商管理 | 使用记录 |
|:---:|:---:|
| ![提供商管理](docs/screenshots/providers.png) | ![使用记录](docs/screenshots/usage.png) |
| 模型详情 | 关联提供商 |
|:---:|:---:|
| ![模型详情](docs/screenshots/model-detail.png) | ![关联提供商](docs/screenshots/model-providers.png) |
| 链路追踪 | 系统设置 |
|:---:|:---:|
| ![链路追踪](docs/screenshots/tracing.png) | ![系统设置](docs/screenshots/settings.png) |
## 部署 ## 部署
@@ -93,6 +73,14 @@ uv sync
cd frontend && npm install && npm run dev cd frontend && npm install && npm run dev
``` ```
## Aether Proxy
Aether Proxy 是配套的正向代理节点,部署在海外 VPS 上,为墙内的 Aether 实例中转 API 流量。支持 TUI 向导一键配置、systemd 服务管理、TLS 加密、DNS 缓存及连接池调优。
- Docker Compose 部署或下载预编译二进制直接运行
- 通过 `aether-proxy setup` 完成交互式配置,自动注册为系统服务
- 详细文档见 [aether-proxy/README.md](aether-proxy/README.md)
## 环境变量 ## 环境变量
### 必需配置 ### 必需配置
@@ -130,27 +118,6 @@ cd frontend && npm install && npm run dev
| Headers | Base + 请求头 | | Headers | Base + 请求头 |
| Full | Headers + 请求体 | | Full | Headers + 请求体 |
### Q: 管理员如何给模型配置 1M上下文 / 1H缓存 能力支持?
1. **模型管理**: 给模型设置 1M上下文 / 1H缓存 的能力支持, 并配置好价格
2. **提供商管理**: 给端点添加支持该能力的密钥, 并勾选对应的能力标签
### Q: 用户如何使用 1H缓存?
- **模型级别**: 在模型管理中针对指定模型开启 1H缓存策略
- **密钥级别**: 在密钥管理中针对指定密钥使用 1H缓存策略
> **注意**: 若对密钥设置强制 1H缓存, 则该密钥只能使用支持 1H缓存的模型, 匹配提供商Key, 将会导致这个Key无法同时用于Claude Code、Codex、GeminiCLI, 因为更推荐使用模型开启1H缓存.
### Q: 如何配置负载均衡?
在管理后台 **提供商管理** 中切换调度模式:
| 模式 | 说明 | 适用场景 |
|------|------|----------|
| **提供商优先** | 按 Provider 优先级排序, 同优先级内按 Key 优先级排序, 相同优先级哈希分散 | 优先使用特定供应商 |
| **全局 Key 优先** | 忽略 Provider 层级, 所有 Key 按全局优先级统一排序, 相同优先级哈希分散 | 跨 Provider 统一调度, 最大化利用所有 Key |
### Q: 更新出问题如何回滚? ### Q: 更新出问题如何回滚?
**有备份的情况(推荐):** **有备份的情况(推荐):**

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "aether-proxy" name = "aether-proxy"
version = "0.1.5" version = "0.1.6"
edition = "2021" edition = "2021"
description = "Forward proxy for Aether with HMAC authentication" description = "Forward proxy for Aether with HMAC authentication"

View File

@@ -4,7 +4,7 @@ Aether 正向代理节点,部署在海外 VPS 上,为墙内的 Aether 实例
## 安装 ## 安装
### Docker 部署 ### Docker Compose 部署
```bash ```bash
# 拉取镜像 # 拉取镜像

Binary file not shown.

Before

Width:  |  Height:  |  Size: 583 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 572 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 188 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 598 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 549 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 323 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 640 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 197 KiB