From 7f529bd991133d2ab9f85079646a3a07c27547ed Mon Sep 17 00:00:00 2001 From: Wang Defa <1+wangdefa@noreply.gitea.bcde.io> Date: Mon, 13 Jul 2026 20:14:28 +0800 Subject: [PATCH] =?UTF-8?q?AI=E7=BD=91=E5=85=B3=E6=8E=A5=E5=85=A5=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E8=A1=A5=E9=BD=90=E6=96=B0=E7=AB=AF=E7=82=B9,CHANGELO?= =?UTF-8?q?G=200.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 16 +++++++++++----- src/views/AiGatewayView.vue | 3 +++ 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50b45d1..1829edc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,14 @@ # 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 @@ -27,7 +33,7 @@ - 修复租户列表分页状态在页面重绘时丢失,以及筛选后停留在越界页码的问题 - 修复「引导卷(GB)」等可清空数字输入框的步进箭头挤出输入框右缘的错位;清空图标改为悬浮在步进竖栏左侧,输入文本自动避让 -## [0.2.0] - 2026-07-12 +## [0.2.0] ### Added @@ -39,7 +45,7 @@ - 租户删除确认弹窗分段排版(标题 / 面板清理范围 / 云端提示),列表与详情页文案一致 -## [0.1.0] - 2026-07-10 +## [0.1.0] ### Added @@ -61,7 +67,7 @@ - 租户详情「用户」「策略」等 Tab 切换域后内容不刷新 - 实例详情区块加载中时禁用头部操作按钮,防误点 -## [0.0.1] - 2026-07-09 +## [0.0.1] 首个版本:OCI Portal 前端。 diff --git a/src/views/AiGatewayView.vue b/src/views/AiGatewayView.vue index 5ec40ba..c24ab5c 100644 --- a/src/views/AiGatewayView.vue +++ b/src/views/AiGatewayView.vue @@ -31,6 +31,9 @@ const endpoints = [ { method: 'POST', path: '/responses', note: 'OpenAI Responses · 无状态子集' }, { method: 'POST', path: '/messages', note: 'Claude · 流式/非流式' }, { 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: '模型列表(按密钥分组过滤)' }, ]