diff --git a/docs/changelog/update.md b/docs/changelog/update.md
index 94a813c9..c3b9efdb 100644
--- a/docs/changelog/update.md
+++ b/docs/changelog/update.md
@@ -28,6 +28,7 @@
- [ ] 使用其他的聊天记录管理方法(现在是基于 LangGraph 的 Memory 实现的)
- [ ] 添加测试脚本,覆盖最常见的功能
+- [ ] 添加数据库迁移的脚本
- [ ] 封装现有工具为 mcp(stdio)调用
- [ ] 支持额外 mcp 配置(代码端)
- [ ] 添加用户日志与用户反馈模块,可以在 AgentView 中查看信息
diff --git a/web/src/apis/base.js b/web/src/apis/base.js
index 81732927..16f3d178 100644
--- a/web/src/apis/base.js
+++ b/web/src/apis/base.js
@@ -181,7 +181,7 @@ export function apiSuperAdminPut(url, data = {}, options = {}) {
* @param {boolean} requiresAuth - 是否需要认证
* @returns {Promise} - 请求结果
*/
-export function apiDelete(url, options = {}, requiresAuth = false) {
+export function apiDelete(url, options = {}, requiresAuth = true) {
return apiRequest(url, { method: 'DELETE', ...options }, requiresAuth)
}
diff --git a/web/src/assets/css/base.css b/web/src/assets/css/base.css
index 11b11bde..e2153af4 100644
--- a/web/src/assets/css/base.css
+++ b/web/src/assets/css/base.css
@@ -41,6 +41,8 @@
--main-color: #016179;
+ /* 鲜艳一点的 */
+ --main-bright: #0188a6;
--secondry-color: #4e616d;
--error-color: #ba1a1a;
diff --git a/web/src/components/AgentChatComponent.vue b/web/src/components/AgentChatComponent.vue
index c60a6f0d..104f46d9 100644
--- a/web/src/components/AgentChatComponent.vue
+++ b/web/src/components/AgentChatComponent.vue
@@ -33,11 +33,11 @@
{{ currentAgent ? currentAgent.description : '不同的智能体有不同的专长和能力' }}