1 Commits
Author SHA1 Message Date
wangdefa 7f529bd991 AI网关接入信息补齐新端点,CHANGELOG 0.4.0
CI / test (push) Successful in 26s
Release / release (push) Successful in 26s
2026-07-13 20:14:28 +08:00
2 changed files with 14 additions and 5 deletions
+11 -5
View File
@@ -1,8 +1,14 @@
# Changelog # Changelog
格式遵循 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.1.0/),版本号遵循语义化版本。 格式参考 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.1.0/)(版本段不记日期),版本号遵循语义化版本。
## [0.3.0] - 2026-07-13 ## [0.4.0]
### Added
- AI 网关「接入信息」补齐新端点展示:`POST /audio/speech`(文本转语音 · xAI Voice)、`POST /rerank`(文档重排 · Cohere Rerank)、`POST /moderations`(内容审核 · OCI Guardrails
## [0.3.0]
### Added ### Added
@@ -27,7 +33,7 @@
- 修复租户列表分页状态在页面重绘时丢失,以及筛选后停留在越界页码的问题 - 修复租户列表分页状态在页面重绘时丢失,以及筛选后停留在越界页码的问题
- 修复「引导卷(GB)」等可清空数字输入框的步进箭头挤出输入框右缘的错位;清空图标改为悬浮在步进竖栏左侧,输入文本自动避让 - 修复「引导卷(GB)」等可清空数字输入框的步进箭头挤出输入框右缘的错位;清空图标改为悬浮在步进竖栏左侧,输入文本自动避让
## [0.2.0] - 2026-07-12 ## [0.2.0]
### Added ### Added
@@ -39,7 +45,7 @@
- 租户删除确认弹窗分段排版(标题 / 面板清理范围 / 云端提示),列表与详情页文案一致 - 租户删除确认弹窗分段排版(标题 / 面板清理范围 / 云端提示),列表与详情页文案一致
## [0.1.0] - 2026-07-10 ## [0.1.0]
### Added ### Added
@@ -61,7 +67,7 @@
- 租户详情「用户」「策略」等 Tab 切换域后内容不刷新 - 租户详情「用户」「策略」等 Tab 切换域后内容不刷新
- 实例详情区块加载中时禁用头部操作按钮,防误点 - 实例详情区块加载中时禁用头部操作按钮,防误点
## [0.0.1] - 2026-07-09 ## [0.0.1]
首个版本:OCI Portal 前端。 首个版本:OCI Portal 前端。
+3
View File
@@ -31,6 +31,9 @@ const endpoints = [
{ method: 'POST', path: '/responses', note: 'OpenAI Responses · 无状态子集' }, { method: 'POST', path: '/responses', note: 'OpenAI Responses · 无状态子集' },
{ method: 'POST', path: '/messages', note: 'Claude · 流式/非流式' }, { method: 'POST', path: '/messages', note: 'Claude · 流式/非流式' },
{ method: 'POST', path: '/embeddings', note: 'OpenAI Embeddings · 向量化' }, { method: 'POST', path: '/embeddings', note: 'OpenAI Embeddings · 向量化' },
{ method: 'POST', path: '/audio/speech', note: '文本转语音 · xAI Voice' },
{ method: 'POST', path: '/rerank', note: '文档重排 · Cohere Rerank' },
{ method: 'POST', path: '/moderations', note: '内容审核 · OCI Guardrails' },
{ method: 'GET', path: '/models', note: '模型列表(按密钥分组过滤)' }, { method: 'GET', path: '/models', note: '模型列表(按密钥分组过滤)' },
] ]