v0.15.0: Agent ReAct Loop 核心引擎深度审计与生产级增强 (R1-R50)

核心引擎健壮性(R1-R10)、上下文管理优化(R11-R20)、工具安全与验证(R21-R30)、UI渲染性能(R31-R40)、基础设施与监控(R41-R50)、版本号升级
This commit is contained in:
thzxx
2026-07-11 20:56:48 +08:00
parent e04320d454
commit cb2ce48eb7
15 changed files with 2012 additions and 170 deletions
+47
View File
@@ -4180,3 +4180,50 @@ html, body {
margin-top: 4px;
font-weight: 500;
}
/* ═══ R31-R40: UI/UX 增强 ═══ */
/* R38: 代码块复制按钮 */
.code-copy-btn {
font-family: inherit;
color: var(--text-secondary);
transition: opacity 0.2s, background 0.2s;
}
.code-copy-btn:hover {
background: var(--bg-tertiary, rgba(128, 128, 128, 0.15)) !important;
color: var(--text-primary);
}
/* R40: 消息操作按钮 */
.msg-actions {
z-index: 5;
}
.msg-action-btn {
font-family: inherit;
color: var(--text-secondary);
transition: background 0.2s, transform 0.1s;
}
.msg-action-btn:hover {
background: var(--bg-tertiary, rgba(128, 128, 128, 0.2)) !important;
transform: scale(1.1);
}
.msg-action-btn:active {
transform: scale(0.95);
}
/* R31: 消息截断提示 */
.msg-truncated-notice {
border-top: 1px dashed var(--border-color);
border-bottom: 1px dashed var(--border-color);
margin: 8px 0;
background: var(--bg-secondary, rgba(128, 128, 128, 0.05));
}
/* R34: 加载提示文本动画 */
.loading-text {
display: inline-block;
margin-left: 8px;
color: var(--text-muted);
font-size: 13px;
transition: opacity 0.3s;
}