mirror of
https://github.com/Syngnat/GoNavi.git
synced 2026-07-12 16:02:48 +08:00
🐛 fix(ai/provider): 修复 Kimi 与 MiniMax 供应商兼容路由
- 调整 Kimi 预设为 Anthropic 兼容入口并修正 Moonshot 域名回显 - 修复 Anthropic 请求地址归一化,确保聊天请求正确落到 /v1/messages - 修正 Kimi 模型列表与测试连接路由,固定使用 Moonshot /v1/models - 修正 MiniMax 默认模型与兼容模型集合,避免请求不存在的 /anthropic/v1/models - 为 MiniMax 健康检查改用最小化 messages 请求,并兼容旧模型名配置 - 补充 Kimi 与 MiniMax 供应商回归测试,更新需求追踪文档
This commit is contained in:
@@ -483,3 +483,15 @@
|
||||
@keyframes ai-spin-anim {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
/* 面板/弹窗内部 toast 定位覆盖:从 fixed(视口顶部)改为 absolute(容器内部顶部) */
|
||||
.ai-chat-panel .ant-message,
|
||||
.ai-settings-body .ant-message {
|
||||
position: absolute !important;
|
||||
top: 16px !important;
|
||||
left: 50% !important;
|
||||
transform: translateX(-50%) !important;
|
||||
right: auto !important;
|
||||
width: max-content;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user