Compare commits

..

2 Commits

Author SHA1 Message Date
b4e181caea fix: fullscreen chart and metrics log layout 2026-02-08 14:16:01 +08:00
6500b3a481 chore: adjust state integration concurrency 2026-02-08 13:34:53 +08:00
3 changed files with 25 additions and 19 deletions

View File

@@ -981,9 +981,9 @@ h1 span {
}
.fullscreen .modal-box {
width: calc(100vw - 48px);
width: 95vw;
height: 90vh;
max-width: none;
height: calc(100vh - 48px);
max-height: none;
}
@@ -993,6 +993,12 @@ h1 span {
overflow: hidden;
}
#relation-chart-fullscreen {
width: 100%;
height: 100%;
min-height: 500px;
}
/* ═══════════════════════════════════════════════════════════════════════════
Editor
═══════════════════════════════════════════════════════════════════════════ */
@@ -2727,19 +2733,19 @@ h1 span {
}
.debug-log-viewer {
width: 100%;
height: 400px;
background: var(--bg3);
border: 1px solid var(--bdr);
border-radius: 6px;
padding: 12px;
font-family: 'SF Mono', Monaco, Consolas, 'Courier New', monospace;
font-size: 11px;
background: #1e1e1e;
color: #d4d4d4;
padding: 16px;
border-radius: 8px;
font-family: 'Consolas', 'Monaco', monospace;
font-size: 12px;
line-height: 1.5;
color: var(--txt2);
max-height: 60vh;
overflow-y: auto;
overflow-x: hidden;
white-space: pre-wrap;
margin: 0;
word-break: break-word;
overflow-wrap: break-word;
}
.recall-empty {
@@ -2897,4 +2903,4 @@ h1 span {
#recall-log-content .metric-good {
color: #22c55e;
}
}

View File

@@ -29,8 +29,8 @@ import { filterText } from '../utils/text-filter.js';
const MODULE_ID = 'state-integration';
// ★ 并发配置
const CONCURRENCY = 30;
const STAGGER_DELAY = 30;
const CONCURRENCY = 90;
const STAGGER_DELAY = 15;
let initialized = false;
let extractionCancelled = false;

View File

@@ -137,9 +137,9 @@ export function formatMetricsLog(metrics) {
const lines = [];
lines.push('');
lines.push('═══════════════════════════════════════════════════════════════════');
lines.push(' Recall Metrics Report ');
lines.push('═══════════════════════════════════════════════════════════════════');
lines.push('════════════════════════════════════════');
lines.push(' Recall Metrics Report ');
lines.push('════════════════════════════════════════');
lines.push('');
// L0 Query Understanding
@@ -291,7 +291,7 @@ export function formatMetricsLog(metrics) {
}
lines.push('');
lines.push('═══════════════════════════════════════════════════════════════════');
lines.push('════════════════════════════════════════');
lines.push('');
return lines.join('\n');