Spaces:
Paused
Fix GRPO correctness + scale config for L40S
Browse files- Reward function now restores per-prompt env snapshot before scoring,
so each completion is judged against the state its prompt described
(not whatever env._state happened to be). Fixes silent learning-signal
decoupling that was wrecking previous runs.
- Add independent format-quality reward as second reward_func, per
hackathon guide's "use multiple independent reward signals" advice.
- Trim state_to_prompt from ~700-1000 to ~150-200 tokens (~4x faster
generation, no info loss).
- Scale defaults for L40S (was T4): Qwen2.5-1.5B, num_generations=8,
per_device_batch=2, max_steps=60, max_completion_length=192, bf16=True,
prompt_budget=200. All env-var overridable.
- Add preflight reward-variance check before training (aborts loudly
if all rewards identical = no learning signal).
- Wire real LLM into /api/compare so 'VERGIL-Trained' arm actually runs
the trained model when loaded; falls back to heuristic with clear label.
- _validate_action: only enforce target-node existence for actions that
use a target. Fixes the DO_NOTHING-with-stale-target infinite warning loop.
- parse_llm_output: coerces target to a valid pending node_id; falls back
to DO_NOTHING when LLM hallucinates a stakeholder id as target.
- Save + push model BEFORE post-training eval so a sleeping Space can't
cost us the trained adapter. Eval is now strictly optional with
SKIP_EVAL/EVAL_EPISODES/EVAL_TIMEOUT_SEC env knobs.
- Promote GPU Dockerfile to repo root (was vergil-training-space-fix/);
keep CPU Dockerfile as Dockerfile.demo for later demo Space.
- Add .dockerignore + extend .gitignore (.env, *.log) so secrets and
noise never reach the Space build.
Made-with: Cursor
- .dockerignore +19 -0
- .gitignore +4 -1
- Dockerfile +18 -8
- Dockerfile.demo +13 -0
- frontend/app.js +323 -271
- frontend/index.html +82 -61
- frontend/style.css +589 -617
- scripts/train_grpo_colab.py +500 -279
- vergil-training-space-fix/Dockerfile +0 -23
- vergil/api/server.py +14 -2
- vergil/core/env.py +32 -11
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.env
|
| 2 |
+
.env.*
|
| 3 |
+
*.pem
|
| 4 |
+
*.key
|
| 5 |
+
.git
|
| 6 |
+
.gitignore
|
| 7 |
+
__pycache__/
|
| 8 |
+
*.pyc
|
| 9 |
+
*.pyo
|
| 10 |
+
.pytest_cache/
|
| 11 |
+
.DS_Store
|
| 12 |
+
training_results/
|
| 13 |
+
backend.log
|
| 14 |
+
*.log
|
| 15 |
+
node_modules/
|
| 16 |
+
.cursor/
|
| 17 |
+
.vscode/
|
| 18 |
+
Dockerfile.demo
|
| 19 |
+
test_reset.py
|
|
@@ -5,4 +5,7 @@ __pycache__/
|
|
| 5 |
training_results/
|
| 6 |
/tmp/
|
| 7 |
.DS_Store
|
| 8 |
-
.env
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
training_results/
|
| 6 |
/tmp/
|
| 7 |
.DS_Store
|
| 8 |
+
.env
|
| 9 |
+
.env.*
|
| 10 |
+
*.log
|
| 11 |
+
node_modules/
|
|
@@ -1,13 +1,23 @@
|
|
| 1 |
-
FROM
|
| 2 |
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
-
|
| 6 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
| 7 |
-
RUN pip install --no-cache-dir fastapi uvicorn
|
| 8 |
|
| 9 |
-
|
|
|
|
|
|
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM pytorch/pytorch:2.3.0-cuda12.1-cudnn8-devel
|
| 2 |
|
| 3 |
+
RUN useradd -m -u 1000 user
|
| 4 |
+
USER user
|
| 5 |
+
ENV HOME=/home/user \
|
| 6 |
+
PATH=/home/user/.local/bin:$PATH \
|
| 7 |
+
CUDA_HOME=/usr/local/cuda
|
| 8 |
|
| 9 |
+
WORKDIR $HOME/app
|
|
|
|
|
|
|
| 10 |
|
| 11 |
+
USER root
|
| 12 |
+
RUN apt-get update && apt-get install -y git curl build-essential && rm -rf /var/lib/apt/lists/*
|
| 13 |
+
USER user
|
| 14 |
|
| 15 |
+
COPY --chown=user . $HOME/app
|
| 16 |
|
| 17 |
+
RUN pip install --upgrade pip
|
| 18 |
+
# Force strict synchronization of PyTorch and Torchvision directly from NVIDIA's servers
|
| 19 |
+
RUN pip install "torch==2.3.1" "torchvision==0.18.1" --index-url https://download.pytorch.org/whl/cu121
|
| 20 |
+
# Install all required modules in one robust resolution block
|
| 21 |
+
RUN pip install "unsloth" "xformers==0.0.27" "trl" "peft" "accelerate" "bitsandbytes" "gymnasium" "networkx" "scipy" "datasets" "gradio" "huggingface_hub"
|
| 22 |
+
|
| 23 |
+
CMD ["python", "app.py"]
|
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.11-slim
|
| 2 |
+
|
| 3 |
+
WORKDIR /app
|
| 4 |
+
|
| 5 |
+
COPY requirements.txt .
|
| 6 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 7 |
+
RUN pip install --no-cache-dir fastapi uvicorn
|
| 8 |
+
|
| 9 |
+
COPY . .
|
| 10 |
+
|
| 11 |
+
EXPOSE 7860
|
| 12 |
+
|
| 13 |
+
CMD ["python", "-m", "uvicorn", "vergil.api.server:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
@@ -1,16 +1,19 @@
|
|
| 1 |
/* ═══════════════════════════════════════════════════════════
|
| 2 |
-
VERGIL — App Logic
|
| 3 |
═══════════════════════════════════════════════════════════ */
|
| 4 |
|
| 5 |
const API = '';
|
| 6 |
|
| 7 |
// ── State ────────────────────────────────────────────────
|
| 8 |
-
let currentState
|
| 9 |
-
let selectedNode
|
| 10 |
-
let totalReward
|
| 11 |
-
let autoTimer
|
| 12 |
-
let d3Sim
|
| 13 |
-
let episodeHistory = [];
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
// ── DOM shortcuts ────────────────────────────────────────
|
| 16 |
const $ = id => document.getElementById(id);
|
|
@@ -44,12 +47,12 @@ async function loadScenarios() {
|
|
| 44 |
try {
|
| 45 |
const data = await fetchJSON(`${API}/api/scenarios`);
|
| 46 |
data.scenarios.forEach(s => {
|
| 47 |
-
const
|
| 48 |
-
|
| 49 |
-
o.
|
|
|
|
| 50 |
$('scenario-select').appendChild(o);
|
| 51 |
-
|
| 52 |
-
$('cmp-scenario-select').appendChild(o2);
|
| 53 |
});
|
| 54 |
} catch(e) { /* no scenarios endpoint — fine */ }
|
| 55 |
}
|
|
@@ -59,17 +62,20 @@ async function loadScenarios() {
|
|
| 59 |
// ═══════════════════════════════════════════════════════════
|
| 60 |
async function resetEpisode() {
|
| 61 |
stopAutoplay();
|
| 62 |
-
totalReward
|
| 63 |
episodeHistory = [];
|
| 64 |
-
selectedNode
|
|
|
|
|
|
|
|
|
|
| 65 |
|
| 66 |
const body = {};
|
| 67 |
-
const sel
|
| 68 |
if (sel) body.scenario_id = sel;
|
| 69 |
|
| 70 |
setLoading(true);
|
| 71 |
try {
|
| 72 |
-
const data
|
| 73 |
currentState = data.state;
|
| 74 |
|
| 75 |
clearFeed();
|
|
@@ -122,14 +128,13 @@ async function takeAction(actionType) {
|
|
| 122 |
}
|
| 123 |
|
| 124 |
// ═══════════════════════════════════════════════════════════
|
| 125 |
-
// AGENT AUTO-STEP
|
| 126 |
// ═══════════════════════════════════════════════════════════
|
| 127 |
async function agentStep() {
|
| 128 |
if (!currentState) return;
|
| 129 |
try {
|
| 130 |
const data = await fetchJSON(`${API}/api/agent-step`, { method: 'POST', body: {} });
|
| 131 |
-
|
| 132 |
-
const sr = data.step_record || {};
|
| 133 |
handleStepResponse(data, sr.action || 'do_nothing', sr.agent_reasoning || null);
|
| 134 |
} catch(e) {
|
| 135 |
feedSystem(`Agent step failed: ${e.message}`, true);
|
|
@@ -140,38 +145,30 @@ async function agentStep() {
|
|
| 140 |
function handleStepResponse(data, actionType, reasoning) {
|
| 141 |
if (data.detail) { feedSystem(`Error: ${data.detail}`, true); return; }
|
| 142 |
|
| 143 |
-
currentState
|
| 144 |
-
const reward
|
| 145 |
-
totalReward
|
| 146 |
|
| 147 |
-
const sr
|
| 148 |
const targetId = sr.target || data.target_node_id || data.target;
|
| 149 |
const nodes = currentState.graph?.nodes || [];
|
| 150 |
const node = nodes.find(n => n.id === targetId);
|
| 151 |
|
| 152 |
-
// Show agent reasoning block if available
|
| 153 |
if (reasoning) feedThink(reasoning);
|
| 154 |
-
|
| 155 |
-
// Show decision card
|
| 156 |
feedDecision(actionType, node, reward, data.info?.stakeholder_responses);
|
| 157 |
-
|
| 158 |
-
// Timeline entry
|
| 159 |
pushTimeline(actionType, node?.label || targetId || '—', reward);
|
| 160 |
-
|
| 161 |
-
// Log brief summary
|
| 162 |
logAdd('agent', `${actionIcon(actionType)} ${node?.label || actionType} (${reward >= 0 ? '+' : ''}${reward.toFixed(3)})`);
|
| 163 |
|
| 164 |
-
// Cascade events
|
| 165 |
const cascades = data.info?.cascade_events || [];
|
| 166 |
if (cascades.length) {
|
|
|
|
|
|
|
| 167 |
feedCascade(cascades);
|
| 168 |
logAdd('danger', `⚠ Cascade: ${cascades.length} node(s) affected`);
|
| 169 |
}
|
| 170 |
|
| 171 |
-
// New pending from stakeholder responses
|
| 172 |
const newPending = nodes.filter(n =>
|
| 173 |
-
n.status === 'pending' &&
|
| 174 |
-
!episodeHistory.some(h => h.nodeId === n.id)
|
| 175 |
);
|
| 176 |
newPending.forEach(n => feedStakeholder(n));
|
| 177 |
|
|
@@ -179,7 +176,6 @@ function handleStepResponse(data, actionType, reasoning) {
|
|
| 179 |
|
| 180 |
renderAll(currentState, data);
|
| 181 |
|
| 182 |
-
// Auto-select next pending
|
| 183 |
const pending = nodes.filter(n => n.status === 'pending');
|
| 184 |
if (pending.length && !pending.find(n => n.id === selectedNode)) selectNode(pending[0].id);
|
| 185 |
|
|
@@ -225,6 +221,7 @@ function stopAutoplay() {
|
|
| 225 |
// ═══════════════════════════════════════════════════════════
|
| 226 |
function renderAll(state, stepData) {
|
| 227 |
renderTopbar(state);
|
|
|
|
| 228 |
renderGraph(state);
|
| 229 |
renderNodePicker(state);
|
| 230 |
renderTrust(state);
|
|
@@ -237,17 +234,17 @@ function renderAll(state, stepData) {
|
|
| 237 |
function renderTopbar(state) {
|
| 238 |
$('stat-step').textContent = state.step_number || 0;
|
| 239 |
|
| 240 |
-
const r
|
| 241 |
const rEl = $('stat-reward');
|
| 242 |
rEl.textContent = (r >= 0 ? '+' : '') + r.toFixed(2);
|
| 243 |
-
rEl.style.color = r >= 0 ? 'var(--
|
| 244 |
|
| 245 |
-
const sat
|
| 246 |
const satEl = $('stat-sat');
|
| 247 |
if (sat != null) {
|
| 248 |
const pct = Math.round(sat * 100);
|
| 249 |
satEl.textContent = pct + '%';
|
| 250 |
-
satEl.style.color = pct >= 70 ? 'var(--
|
| 251 |
} else {
|
| 252 |
satEl.textContent = '—'; satEl.style.color = '';
|
| 253 |
}
|
|
@@ -257,43 +254,83 @@ function renderTopbar(state) {
|
|
| 257 |
if (load != null) {
|
| 258 |
const pct = Math.round(load * 100);
|
| 259 |
ldEl.textContent = pct + '%';
|
| 260 |
-
ldEl.style.color = pct > 80 ? 'var(--
|
| 261 |
}
|
| 262 |
|
| 263 |
$('badge-stage').textContent = `Stage ${state.curriculum_stage || 1}`;
|
| 264 |
}
|
| 265 |
|
| 266 |
function renderScenarioHeader(state) {
|
| 267 |
-
const nodes
|
| 268 |
-
const n
|
| 269 |
const stakes = new Set(nodes.map(nd => nd.stakeholder_id).filter(Boolean));
|
| 270 |
$('sh-title').textContent = `${n} commitment${n !== 1 ? 's' : ''} — ${stakes.size} stakeholder${stakes.size !== 1 ? 's' : ''}`;
|
| 271 |
$('sh-sub').textContent = `${state.available_hours_next_48h?.toFixed(1) || '—'}h available in 48h window`;
|
| 272 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 273 |
}
|
| 274 |
|
| 275 |
function renderGraphIndicators(state) {
|
| 276 |
-
const nodes
|
| 277 |
const pending = nodes.filter(n => n.status === 'pending').length;
|
| 278 |
const active = nodes.filter(n => n.status === 'accepted').length;
|
|
|
|
| 279 |
const failed = nodes.filter(n => n.status === 'failed').length;
|
| 280 |
|
| 281 |
-
|
| 282 |
-
|
| 283 |
-
|
| 284 |
-
|
| 285 |
-
pEl.textContent = `${pending} pending`;
|
| 286 |
-
pEl.style.color = pending > 0 ? 'var(--yellow)' : 'var(--text-3)';
|
| 287 |
-
|
| 288 |
-
aEl.textContent = `${active} active`;
|
| 289 |
-
aEl.style.color = active > 0 ? 'var(--blue)' : 'var(--text-3)';
|
| 290 |
-
|
| 291 |
-
fEl.textContent = `${failed} failed`;
|
| 292 |
-
fEl.style.color = failed > 0 ? 'var(--red)' : 'var(--text-3)';
|
| 293 |
}
|
| 294 |
|
| 295 |
// ═══════════════════════════════════════════════════════════
|
| 296 |
-
// D3 GRAPH
|
| 297 |
// ═══════════════════════════════════════════════════════════
|
| 298 |
function renderGraph(state) {
|
| 299 |
const graphData = state.graph;
|
|
@@ -306,7 +343,6 @@ function renderGraph(state) {
|
|
| 306 |
const svg = d3.select('#graph-svg');
|
| 307 |
svg.selectAll('*').remove();
|
| 308 |
|
| 309 |
-
// Build maps for current positions (preserve layout on re-render)
|
| 310 |
const prevPos = {};
|
| 311 |
if (d3Sim) {
|
| 312 |
d3Sim.stop();
|
|
@@ -314,91 +350,120 @@ function renderGraph(state) {
|
|
| 314 |
}
|
| 315 |
|
| 316 |
const defs = svg.append('defs');
|
| 317 |
-
|
| 318 |
-
|
| 319 |
-
|
| 320 |
-
|
| 321 |
-
|
| 322 |
-
|
| 323 |
-
|
| 324 |
-
|
| 325 |
-
.
|
| 326 |
-
|
| 327 |
-
|
| 328 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 329 |
|
| 330 |
const g = svg.append('g');
|
|
|
|
| 331 |
|
| 332 |
-
//
|
| 333 |
-
|
| 334 |
-
|
| 335 |
-
.on('zoom', e => g.attr('transform', e.transform))
|
| 336 |
-
);
|
| 337 |
|
| 338 |
const nodes = graphData.nodes.map(n => ({
|
| 339 |
...n,
|
| 340 |
-
|
| 341 |
-
|
|
|
|
| 342 |
}));
|
| 343 |
const links = (graphData.edges || []).map(e => ({...e}));
|
| 344 |
|
| 345 |
-
//
|
| 346 |
-
const
|
| 347 |
-
|
| 348 |
-
.attr('class', d =>
|
| 349 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 350 |
|
| 351 |
// Node groups
|
| 352 |
-
const
|
| 353 |
-
|
| 354 |
-
.attr('class', d => `node
|
| 355 |
.call(d3.drag()
|
| 356 |
-
.on('start', (e,d) => { if (!e.active) d3Sim.alphaTarget(0.3).restart(); d.fx=d.x; d.fy=d.y; })
|
| 357 |
-
.on('drag', (e,d) => { d.fx=e.x; d.fy=e.y; })
|
| 358 |
-
.on('end', (e,d) => { if (!e.active) d3Sim.alphaTarget(0); d.fx=null; d.fy=null; })
|
| 359 |
)
|
| 360 |
.on('click', (e, d) => { e.stopPropagation(); selectNode(d.id); });
|
| 361 |
|
| 362 |
-
|
|
|
|
| 363 |
|
| 364 |
-
|
|
|
|
| 365 |
|
| 366 |
-
//
|
| 367 |
-
node.append('circle')
|
| 368 |
-
.attr('class', 'urgency-ring')
|
| 369 |
-
.attr('r', d => radius(d) + 5)
|
| 370 |
-
.attr('stroke', d => {
|
| 371 |
-
const u = d.urgency || 0;
|
| 372 |
-
return u > 0.7 ? 'var(--red)' : u > 0.4 ? 'var(--yellow)' : 'var(--green)';
|
| 373 |
-
})
|
| 374 |
-
.attr('stroke-opacity', d => (d.urgency || 0) * 0.6)
|
| 375 |
-
.attr('fill', 'none')
|
| 376 |
-
.attr('stroke-width', 1.5)
|
| 377 |
-
.attr('stroke-dasharray', '3,3');
|
| 378 |
|
| 379 |
-
//
|
| 380 |
node.append('text')
|
| 381 |
-
.attr('
|
| 382 |
-
.
|
|
|
|
| 383 |
|
|
|
|
| 384 |
node.append('text')
|
| 385 |
-
.attr('class', 'node-
|
| 386 |
-
.attr('dy',
|
| 387 |
.text(d => {
|
| 388 |
-
const
|
| 389 |
-
return
|
| 390 |
});
|
| 391 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 392 |
// Force simulation
|
| 393 |
d3Sim = d3.forceSimulation(nodes)
|
| 394 |
-
.force('link',
|
| 395 |
-
.force('charge',
|
| 396 |
-
.force('center',
|
| 397 |
-
.force('collide', d3.forceCollide(d =>
|
| 398 |
.on('tick', () => {
|
| 399 |
-
link
|
| 400 |
-
|
| 401 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 402 |
node.attr('transform', d => `translate(${d.x},${d.y})`);
|
| 403 |
});
|
| 404 |
}
|
|
@@ -412,8 +477,8 @@ function renderNodePicker(state) {
|
|
| 412 |
picker.innerHTML = '<option value="">— select commitment —</option>';
|
| 413 |
|
| 414 |
(state.graph?.nodes || []).forEach(n => {
|
| 415 |
-
const o
|
| 416 |
-
o.value
|
| 417 |
const dur = n.estimated_duration_hours ? `${n.estimated_duration_hours}h` : '';
|
| 418 |
o.textContent = `[${n.status}] ${n.label || n.id} ${dur}`;
|
| 419 |
if (n.status !== 'pending') o.style.color = '#5b6b82';
|
|
@@ -425,30 +490,31 @@ function renderNodePicker(state) {
|
|
| 425 |
function selectNode(nodeId) {
|
| 426 |
selectedNode = nodeId;
|
| 427 |
$('node-picker').value = nodeId;
|
| 428 |
-
|
| 429 |
-
// Highlight in graph
|
| 430 |
-
d3.selectAll('.node')
|
| 431 |
-
.classed('selected', d => d.id === nodeId);
|
| 432 |
-
|
| 433 |
renderTargetDetail(currentState);
|
| 434 |
}
|
| 435 |
|
| 436 |
function renderTargetDetail(state) {
|
| 437 |
const el = $('target-detail');
|
| 438 |
-
if (!selectedNode || !state) {
|
| 439 |
-
|
|
|
|
|
|
|
| 440 |
const node = (state.graph?.nodes || []).find(n => n.id === selectedNode);
|
| 441 |
if (!node) { el.innerHTML = '<div class="td-empty">Node not found</div>'; return; }
|
| 442 |
|
| 443 |
-
const dl = node.deadline
|
|
|
|
|
|
|
| 444 |
const urgPct = Math.round((node.urgency || 0) * 100);
|
|
|
|
| 445 |
|
| 446 |
el.innerHTML = `
|
| 447 |
<div class="td-name">${node.label || node.id}</div>
|
| 448 |
-
<div class="td-row"><span class="td-k">Status</span><span class="td-v"><span class="td-
|
| 449 |
<div class="td-row"><span class="td-k">Duration</span><span class="td-v">${node.estimated_duration_hours || '?'}h</span></div>
|
| 450 |
<div class="td-row"><span class="td-k">Deadline</span><span class="td-v">${dl}</span></div>
|
| 451 |
-
<div class="td-row"><span class="td-k">Urgency</span><span class="td-v" style="color:${
|
| 452 |
<div class="td-row"><span class="td-k">Stakeholder</span><span class="td-v">${node.stakeholder_id || '—'}</span></div>
|
| 453 |
${node.type ? `<div class="td-row"><span class="td-k">Type</span><span class="td-v">${node.type}</span></div>` : ''}
|
| 454 |
`;
|
|
@@ -458,54 +524,51 @@ function renderTargetDetail(state) {
|
|
| 458 |
// TRUST BARS
|
| 459 |
// ═══════════════════════════════════════════════════════════
|
| 460 |
function renderTrust(state) {
|
| 461 |
-
// API returns trust_scores: {sid: float} and optionally multidim_trust: {sid: {reliability,competence,benevolence}}
|
| 462 |
const scores = state.trust_scores || state.trust_entries || {};
|
| 463 |
const mdTrust = state.multidim_trust || {};
|
| 464 |
const list = $('trust-list');
|
| 465 |
list.innerHTML = '';
|
| 466 |
|
| 467 |
-
const vals = Object.values(scores).map(v => typeof v === 'number' ? v : (v.trust_score || 0));
|
| 468 |
const avg = vals.length ? vals.reduce((a,b)=>a+b,0)/vals.length : null;
|
|
|
|
| 469 |
const avgBadge = $('trust-avg-badge');
|
| 470 |
if (avg !== null) {
|
| 471 |
-
avgBadge.textContent
|
| 472 |
-
avgBadge.
|
| 473 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 474 |
}
|
| 475 |
|
| 476 |
Object.entries(scores).forEach(([sid, raw]) => {
|
| 477 |
-
const score = typeof raw === 'number' ? raw : (raw.trust_score || 0);
|
| 478 |
const pct = Math.round(score * 100);
|
| 479 |
-
const
|
| 480 |
|
| 481 |
const md = mdTrust[sid];
|
| 482 |
-
|
| 483 |
-
|
| 484 |
-
|
| 485 |
-
<
|
| 486 |
-
|
| 487 |
-
|
| 488 |
-
<span class="te-dim">B:<span>${((md.benevolence||0)*100).toFixed(0)}</span></span>
|
| 489 |
-
</div>`;
|
| 490 |
-
}
|
| 491 |
|
| 492 |
list.insertAdjacentHTML('beforeend', `
|
| 493 |
-
<div class="
|
| 494 |
-
<div class="te-
|
| 495 |
<span class="te-name">${sid}</span>
|
| 496 |
-
<
|
| 497 |
-
|
| 498 |
-
|
| 499 |
-
<div class="te-bar-fill ${cls}" style="width:${pct}%"></div>
|
| 500 |
</div>
|
|
|
|
| 501 |
${dimsHtml}
|
| 502 |
</div>
|
| 503 |
`);
|
| 504 |
});
|
| 505 |
-
|
| 506 |
-
if (!Object.keys(scores).length) {
|
| 507 |
-
list.innerHTML = '<div style="color:var(--text-3);font-size:11px;padding:4px 0">No stakeholders yet</div>';
|
| 508 |
-
}
|
| 509 |
}
|
| 510 |
|
| 511 |
// ═══════════════════════════════════════════════════════════
|
|
@@ -518,15 +581,25 @@ function renderCapacity(state) {
|
|
| 518 |
.filter(n => ['accepted','in_progress'].includes(n.status))
|
| 519 |
.reduce((s, n) => s + (n.estimated_duration_hours || 0), 0);
|
| 520 |
|
| 521 |
-
const pct
|
| 522 |
-
const cls
|
| 523 |
-
|
| 524 |
-
$('cap-committed').textContent = committed.toFixed(1) + 'h';
|
| 525 |
-
$('cap-available').textContent = avail.toFixed(1) + 'h';
|
| 526 |
|
| 527 |
-
|
| 528 |
-
|
| 529 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 530 |
}
|
| 531 |
|
| 532 |
// ═══════════════════════════════════════════════════════════
|
|
@@ -534,34 +607,31 @@ function renderCapacity(state) {
|
|
| 534 |
// ═══════════════════════════════════════════════════════════
|
| 535 |
function renderReward(stepData) {
|
| 536 |
const el = $('reward-display');
|
| 537 |
-
if (!stepData?.reward_components && !stepData?.info?.reward_components)
|
| 538 |
-
return;
|
| 539 |
-
}
|
| 540 |
|
| 541 |
-
const rc
|
| 542 |
-
const r
|
| 543 |
-
|
| 544 |
-
const
|
| 545 |
-
const rSign = r >= 0 ? '+' : '';
|
| 546 |
|
| 547 |
const rows = [
|
| 548 |
-
{ k: 'Fulfillment',
|
| 549 |
-
{ k: 'Trust Δ',
|
| 550 |
-
{ k: 'Proactive',
|
| 551 |
-
{ k: 'Accuracy',
|
| 552 |
-
{ k: '— Broken',
|
| 553 |
-
{ k: '— Over-refusal',
|
| 554 |
-
{ k: '— Silent drop',
|
| 555 |
];
|
| 556 |
|
| 557 |
el.innerHTML = `
|
| 558 |
-
<div class="rwd-total ${
|
| 559 |
${rows.map(row => {
|
| 560 |
-
const vCls
|
| 561 |
const vSign = row.v >= 0 ? '+' : '';
|
| 562 |
return `<div class="rwd-row">
|
| 563 |
-
<span class="rwd-
|
| 564 |
-
<span class="rwd-
|
| 565 |
</div>`;
|
| 566 |
}).join('')}
|
| 567 |
`;
|
|
@@ -571,14 +641,13 @@ function renderReward(stepData) {
|
|
| 571 |
// CONVERSATION FEED
|
| 572 |
// ═══════════════════════════════════════════════════════════
|
| 573 |
function clearFeed() {
|
| 574 |
-
// Remove only .msg elements — leave #feed-empty intact
|
| 575 |
document.querySelectorAll('#message-feed .msg').forEach(el => el.remove());
|
| 576 |
$('feed-empty').classList.remove('hidden');
|
| 577 |
}
|
| 578 |
|
| 579 |
function feedMsg(html) {
|
| 580 |
-
const feed = $('message-feed');
|
| 581 |
$('feed-empty').classList.add('hidden');
|
|
|
|
| 582 |
feed.insertAdjacentHTML('beforeend', html);
|
| 583 |
feed.scrollTop = feed.scrollHeight;
|
| 584 |
}
|
|
@@ -603,32 +672,31 @@ function feedStakeholder(node) {
|
|
| 603 |
}
|
| 604 |
|
| 605 |
function feedThink(reasoning) {
|
| 606 |
-
|
| 607 |
-
const
|
| 608 |
-
const stepsHtml = lines.map(l => `<div class="think-step">${l.trim()}</div>`).join('');
|
| 609 |
feedMsg(`
|
| 610 |
<div class="msg msg-think">
|
| 611 |
<div class="think-header">🧠 Agent Reasoning</div>
|
| 612 |
-
<div class="think-body">${
|
| 613 |
</div>
|
| 614 |
`);
|
| 615 |
}
|
| 616 |
|
| 617 |
function feedDecision(actionType, node, reward, stakeholderResponses) {
|
| 618 |
-
const icons
|
| 619 |
-
const labels= { accept:'Accepted', decline:'Declined', counter_propose:'Counter-proposed', do_nothing:'Waited', renegotiate:'Renegotiated' };
|
| 620 |
-
const isPos
|
| 621 |
-
const rSign
|
| 622 |
|
| 623 |
let responsesHtml = '';
|
| 624 |
if (stakeholderResponses) {
|
| 625 |
Object.entries(stakeholderResponses).forEach(([sid, msg]) => {
|
| 626 |
-
if (msg) responsesHtml += `<div style="margin-top:4px;font-size:11px;color:var(--
|
| 627 |
});
|
| 628 |
}
|
| 629 |
|
| 630 |
feedMsg(`
|
| 631 |
-
<div class="msg msg-decision ${isPos ? '' : '
|
| 632 |
<div class="md-action">${icons[actionType] || '•'} ${labels[actionType] || actionType}</div>
|
| 633 |
<div class="md-target">${node ? `"${node.label || node.id}"` : '—'}</div>
|
| 634 |
${responsesHtml}
|
|
@@ -656,30 +724,28 @@ function pushTimeline(actionType, label, reward) {
|
|
| 656 |
const rSign = reward >= 0 ? '+' : '';
|
| 657 |
|
| 658 |
if (track.children.length > 0) {
|
| 659 |
-
track.insertAdjacentHTML('beforeend', '<div class="tl-
|
| 660 |
}
|
| 661 |
-
|
| 662 |
track.insertAdjacentHTML('beforeend', `
|
| 663 |
<div class="tl-step ${actionType}" title="Step ${step}: ${actionType} — ${label}">
|
| 664 |
<div class="tl-icon">${icons[actionType] || '•'}</div>
|
| 665 |
-
<div class="tl-
|
| 666 |
-
<div class="tl-
|
| 667 |
</div>
|
| 668 |
`);
|
| 669 |
-
|
| 670 |
track.scrollLeft = track.scrollWidth;
|
| 671 |
}
|
| 672 |
|
| 673 |
// ═══════════════════════════════════════════════════════════
|
| 674 |
-
// EVENT LOG
|
| 675 |
// ═══════════════════════════════════════════════════════════
|
| 676 |
function clearLog() { $('log-list').innerHTML = ''; }
|
| 677 |
|
| 678 |
function logAdd(type, text) {
|
| 679 |
-
const el
|
| 680 |
-
el.className
|
| 681 |
el.textContent = text;
|
| 682 |
-
const list
|
| 683 |
list.appendChild(el);
|
| 684 |
while (list.children.length > 60) list.removeChild(list.firstChild);
|
| 685 |
list.scrollTop = list.scrollHeight;
|
|
@@ -691,7 +757,7 @@ function logAdd(type, text) {
|
|
| 691 |
async function fetchJSON(url, { method = 'GET', body } = {}) {
|
| 692 |
const opts = { method, headers: { 'Content-Type': 'application/json' } };
|
| 693 |
if (body) opts.body = JSON.stringify(body);
|
| 694 |
-
const res
|
| 695 |
if (!res.ok) throw new Error(`HTTP ${res.status}`);
|
| 696 |
return res.json();
|
| 697 |
}
|
|
@@ -712,16 +778,16 @@ function actionIcon(type) {
|
|
| 712 |
// ═══════════════════════════════════════════════════════════
|
| 713 |
// COMPARE MODE
|
| 714 |
// ═══════════════════════════════════════════════════════════
|
| 715 |
-
let compareData
|
| 716 |
-
let compareStepIdx
|
| 717 |
let compareAutoTimer = null;
|
| 718 |
|
| 719 |
const SCENARIO_DESCS = {
|
| 720 |
-
scenario_04_deadline_crunch: { icon:'⏰', name:'Deadline Crunch',
|
| 721 |
-
scenario_07_simultaneous_infeasibility: { icon:'💥', name:'Simultaneous Infeasibility',desc:'3 requests arrive at once — together impossible' },
|
| 722 |
-
scenario_10_deadline_cascade: { icon:'🌊', name:'Deadline Cascade Chain',
|
| 723 |
-
scenario_11_impossible_math: { icon:'🧮', name:'Impossible Math',
|
| 724 |
-
scenario_12_force_majeure_recovery: { icon:'🚨', name:'Force Majeure Recovery',
|
| 725 |
};
|
| 726 |
|
| 727 |
function openCompare() {
|
|
@@ -752,10 +818,7 @@ async function runComparison() {
|
|
| 752 |
$('cmp-body').classList.add('hidden');
|
| 753 |
|
| 754 |
try {
|
| 755 |
-
const data
|
| 756 |
-
method: 'POST',
|
| 757 |
-
body: { scenario_id: scenarioId },
|
| 758 |
-
});
|
| 759 |
compareData = data;
|
| 760 |
compareStepIdx = 0;
|
| 761 |
|
|
@@ -766,7 +829,7 @@ async function runComparison() {
|
|
| 766 |
renderCmpStep(0);
|
| 767 |
$('cmp-step-label').textContent = `Step 1 / ${Math.max(data.naive.steps.length, data.vergil.steps.length)}`;
|
| 768 |
} catch(e) {
|
| 769 |
-
$('cmp-loading').innerHTML = `<p style="color:var(--
|
| 770 |
}
|
| 771 |
}
|
| 772 |
|
|
@@ -774,55 +837,48 @@ function renderCmpDeltas(data) {
|
|
| 774 |
const n = data.naive.metrics;
|
| 775 |
const v = data.vergil.metrics;
|
| 776 |
|
| 777 |
-
const rDelta = (v.total_reward
|
| 778 |
-
const satDelta = (v.final_sat
|
| 779 |
-
const failAvoid = (n.n_failed
|
| 780 |
-
const trustDelta= (v.avg_trust
|
| 781 |
|
| 782 |
-
|
| 783 |
-
|
| 784 |
-
|
| 785 |
-
}
|
| 786 |
-
function cls(val) { return val > 0 ? 'better' : val < 0 ? 'worse' : ''; }
|
| 787 |
|
| 788 |
$('dv-reward').textContent = fmt(rDelta);
|
| 789 |
-
$('dv-reward').className = `dr-
|
| 790 |
-
|
| 791 |
$('dv-sat').textContent = fmt(satDelta * 100) + '%';
|
| 792 |
-
$('dv-sat').className = `dr-
|
| 793 |
-
|
| 794 |
$('dv-fail').textContent = fmt(failAvoid, true);
|
| 795 |
-
$('dv-fail').className = `dr-
|
| 796 |
-
|
| 797 |
$('dv-trust').textContent = fmt(trustDelta * 100) + '%';
|
| 798 |
-
$('dv-trust').className = `dr-
|
| 799 |
|
| 800 |
-
// Verdict
|
| 801 |
const improved = [rDelta > 0, satDelta > 0, failAvoid >= 0, trustDelta > 0].filter(Boolean).length;
|
| 802 |
$('cmp-verdict').textContent =
|
| 803 |
improved >= 3 ? '✅ VERGIL significantly outperforms naive agent' :
|
| 804 |
improved >= 2 ? '↑ VERGIL shows clear improvement' :
|
| 805 |
'~ Results comparable — try a harder scenario';
|
| 806 |
|
| 807 |
-
// Naive & VERGIL final stats
|
| 808 |
renderSideStats('naive-stats', n);
|
| 809 |
renderSideStats('vergil-stats', v);
|
| 810 |
-
|
| 811 |
-
// Draw final CDG states
|
| 812 |
renderMiniGraph('#cmp-svg-naive', data.naive.final_graph, 'naive');
|
| 813 |
renderMiniGraph('#cmp-svg-vergil', data.vergil.final_graph, 'vergil');
|
| 814 |
}
|
| 815 |
|
| 816 |
function renderSideStats(elId, metrics) {
|
| 817 |
-
|
| 818 |
-
|
| 819 |
-
|
| 820 |
-
<div class="css-stat"><div class="css-
|
| 821 |
-
<div class="css-
|
| 822 |
-
<div class="css-stat"><div class="css-
|
| 823 |
-
<div class="css-
|
| 824 |
-
<div class="css-stat"><div class="css-
|
| 825 |
-
<div class="css-
|
|
|
|
|
|
|
| 826 |
`;
|
| 827 |
}
|
| 828 |
|
|
@@ -839,31 +895,28 @@ function renderCmpStep(idx) {
|
|
| 839 |
const vStep = vSteps[compareStepIdx];
|
| 840 |
|
| 841 |
function stepHtml(step, isVergil) {
|
| 842 |
-
if (!step) return '<em style="color:var(--
|
| 843 |
const icon = actionIcon(step.action);
|
| 844 |
const r = step.reward || 0;
|
| 845 |
const rS = r >= 0 ? '+' : '';
|
| 846 |
if (isVergil && step.reasoning) {
|
| 847 |
return `${icon} <strong>${step.action}</strong> → ${step.target || '—'}<br>
|
| 848 |
<span style="color:#c084fc;margin-top:3px;display:block">🧠 ${step.reasoning}</span>
|
| 849 |
-
<span style="color:var(--
|
| 850 |
}
|
| 851 |
-
return `${icon} <strong>${step.action}</strong> → ${step.target || '—'}<span style="color:var(--
|
| 852 |
}
|
| 853 |
|
| 854 |
-
$('naive-step-display').innerHTML
|
| 855 |
-
$('vergil-step-display').innerHTML
|
| 856 |
|
| 857 |
-
// If any naive step caused a failure, animate cascade
|
| 858 |
if (nStep?.caused_failure) {
|
| 859 |
$('cmp-svg-naive').classList.add('cascade-active');
|
| 860 |
setTimeout(() => $('cmp-svg-naive').classList.remove('cascade-active'), 800);
|
| 861 |
}
|
| 862 |
}
|
| 863 |
|
| 864 |
-
function compareStep(delta) {
|
| 865 |
-
renderCmpStep(compareStepIdx + delta);
|
| 866 |
-
}
|
| 867 |
|
| 868 |
function toggleCompareAuto() {
|
| 869 |
const btn = $('btn-cmp-auto');
|
|
@@ -890,41 +943,41 @@ function stopCompareAuto() {
|
|
| 890 |
}
|
| 891 |
|
| 892 |
function renderMiniGraph(svgSelector, graphData, side) {
|
| 893 |
-
if (!graphData
|
| 894 |
-
|
| 895 |
-
const svgEl = document.querySelector(svgSelector);
|
| 896 |
if (!svgEl) return;
|
| 897 |
const W = svgEl.clientWidth || 500;
|
| 898 |
const H = svgEl.clientHeight || 300;
|
| 899 |
|
| 900 |
-
const svg
|
| 901 |
svg.selectAll('*').remove();
|
| 902 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 903 |
const g = svg.append('g');
|
| 904 |
-
const nodes = graphData.nodes.map(n => ({...n, x: W/2 + (Math.random()-.5)*200, y: H/2 + (Math.random()-.5)*200 }));
|
| 905 |
const links = (graphData.edges || []).map(e => ({...e}));
|
| 906 |
|
| 907 |
-
const colorByStatus = s => ({
|
| 908 |
-
pending: '#eab308', accepted: '#3b82f6',
|
| 909 |
-
completed: '#22c55e', failed: '#ef4444',
|
| 910 |
-
}[s] || '#5b6b82');
|
| 911 |
-
|
| 912 |
const link = g.append('g').selectAll('line').data(links).join('line')
|
| 913 |
-
.attr('stroke', '#
|
| 914 |
|
| 915 |
const node = g.append('g').selectAll('g').data(nodes).join('g');
|
| 916 |
|
| 917 |
node.append('circle')
|
| 918 |
-
.attr('r', d => 10 + (d.urgency||0.5)*
|
| 919 |
-
.attr('fill', d => `${
|
| 920 |
-
.attr('stroke', d =>
|
| 921 |
-
.attr('stroke-width', d => d.status === 'failed' ?
|
| 922 |
.style('filter', d => d.status === 'failed' && side === 'naive'
|
| 923 |
-
? 'drop-shadow(0 0 8px rgba(
|
| 924 |
|
| 925 |
node.append('text')
|
| 926 |
.attr('text-anchor', 'middle').attr('dominant-baseline', 'central')
|
| 927 |
-
.attr('fill', '#94a3b8').attr('font-size', '9px').attr('
|
|
|
|
| 928 |
.text(d => d.label?.slice(0,8) || d.id?.slice(0,6));
|
| 929 |
|
| 930 |
const sim = d3.forceSimulation(nodes)
|
|
@@ -938,6 +991,5 @@ function renderMiniGraph(svgSelector, graphData, side) {
|
|
| 938 |
node.attr('transform', d=>`translate(${d.x},${d.y})`);
|
| 939 |
});
|
| 940 |
|
| 941 |
-
// Stop after settling
|
| 942 |
setTimeout(() => sim.stop(), 3000);
|
| 943 |
}
|
|
|
|
| 1 |
/* ═══════════════════════════════════════════════════════════
|
| 2 |
+
VERGIL — App Logic v5 (Matching Design System v5)
|
| 3 |
═══════════════════════════════════════════════════════════ */
|
| 4 |
|
| 5 |
const API = '';
|
| 6 |
|
| 7 |
// ── State ────────────────────────────────────────────────
|
| 8 |
+
let currentState = null;
|
| 9 |
+
let selectedNode = null;
|
| 10 |
+
let totalReward = 0;
|
| 11 |
+
let autoTimer = null;
|
| 12 |
+
let d3Sim = null;
|
| 13 |
+
let episodeHistory = [];
|
| 14 |
+
let cascadeCount = 0;
|
| 15 |
+
let prevTrustAvg = null;
|
| 16 |
+
let prevHealth = null;
|
| 17 |
|
| 18 |
// ── DOM shortcuts ────────────────────────────────────────
|
| 19 |
const $ = id => document.getElementById(id);
|
|
|
|
| 47 |
try {
|
| 48 |
const data = await fetchJSON(`${API}/api/scenarios`);
|
| 49 |
data.scenarios.forEach(s => {
|
| 50 |
+
const label = s.scenario_id.replace('scenario_','').replace(/_/g,' ');
|
| 51 |
+
const o = document.createElement('option');
|
| 52 |
+
o.value = s.scenario_id;
|
| 53 |
+
o.textContent = label;
|
| 54 |
$('scenario-select').appendChild(o);
|
| 55 |
+
$('cmp-scenario-select').appendChild(o.cloneNode(true));
|
|
|
|
| 56 |
});
|
| 57 |
} catch(e) { /* no scenarios endpoint — fine */ }
|
| 58 |
}
|
|
|
|
| 62 |
// ═══════════════════════════════════════════════════════════
|
| 63 |
async function resetEpisode() {
|
| 64 |
stopAutoplay();
|
| 65 |
+
totalReward = 0;
|
| 66 |
episodeHistory = [];
|
| 67 |
+
selectedNode = null;
|
| 68 |
+
cascadeCount = 0;
|
| 69 |
+
prevTrustAvg = null;
|
| 70 |
+
prevHealth = null;
|
| 71 |
|
| 72 |
const body = {};
|
| 73 |
+
const sel = $('scenario-select').value;
|
| 74 |
if (sel) body.scenario_id = sel;
|
| 75 |
|
| 76 |
setLoading(true);
|
| 77 |
try {
|
| 78 |
+
const data = await fetchJSON(`${API}/api/reset`, { method: 'POST', body });
|
| 79 |
currentState = data.state;
|
| 80 |
|
| 81 |
clearFeed();
|
|
|
|
| 128 |
}
|
| 129 |
|
| 130 |
// ═══════════════════════════════════════════════════════════
|
| 131 |
+
// AGENT AUTO-STEP
|
| 132 |
// ═══════════════════════════════════════════════════════════
|
| 133 |
async function agentStep() {
|
| 134 |
if (!currentState) return;
|
| 135 |
try {
|
| 136 |
const data = await fetchJSON(`${API}/api/agent-step`, { method: 'POST', body: {} });
|
| 137 |
+
const sr = data.step_record || {};
|
|
|
|
| 138 |
handleStepResponse(data, sr.action || 'do_nothing', sr.agent_reasoning || null);
|
| 139 |
} catch(e) {
|
| 140 |
feedSystem(`Agent step failed: ${e.message}`, true);
|
|
|
|
| 145 |
function handleStepResponse(data, actionType, reasoning) {
|
| 146 |
if (data.detail) { feedSystem(`Error: ${data.detail}`, true); return; }
|
| 147 |
|
| 148 |
+
currentState = data.state;
|
| 149 |
+
const reward = data.reward || 0;
|
| 150 |
+
totalReward += reward;
|
| 151 |
|
| 152 |
+
const sr = data.step_record || {};
|
| 153 |
const targetId = sr.target || data.target_node_id || data.target;
|
| 154 |
const nodes = currentState.graph?.nodes || [];
|
| 155 |
const node = nodes.find(n => n.id === targetId);
|
| 156 |
|
|
|
|
| 157 |
if (reasoning) feedThink(reasoning);
|
|
|
|
|
|
|
| 158 |
feedDecision(actionType, node, reward, data.info?.stakeholder_responses);
|
|
|
|
|
|
|
| 159 |
pushTimeline(actionType, node?.label || targetId || '—', reward);
|
|
|
|
|
|
|
| 160 |
logAdd('agent', `${actionIcon(actionType)} ${node?.label || actionType} (${reward >= 0 ? '+' : ''}${reward.toFixed(3)})`);
|
| 161 |
|
|
|
|
| 162 |
const cascades = data.info?.cascade_events || [];
|
| 163 |
if (cascades.length) {
|
| 164 |
+
const affected = cascades.filter(e => e.cascaded).length;
|
| 165 |
+
if (affected) { cascadeCount += affected; }
|
| 166 |
feedCascade(cascades);
|
| 167 |
logAdd('danger', `⚠ Cascade: ${cascades.length} node(s) affected`);
|
| 168 |
}
|
| 169 |
|
|
|
|
| 170 |
const newPending = nodes.filter(n =>
|
| 171 |
+
n.status === 'pending' && !episodeHistory.some(h => h.nodeId === n.id)
|
|
|
|
| 172 |
);
|
| 173 |
newPending.forEach(n => feedStakeholder(n));
|
| 174 |
|
|
|
|
| 176 |
|
| 177 |
renderAll(currentState, data);
|
| 178 |
|
|
|
|
| 179 |
const pending = nodes.filter(n => n.status === 'pending');
|
| 180 |
if (pending.length && !pending.find(n => n.id === selectedNode)) selectNode(pending[0].id);
|
| 181 |
|
|
|
|
| 221 |
// ═══════════════════════════════════════════════════════════
|
| 222 |
function renderAll(state, stepData) {
|
| 223 |
renderTopbar(state);
|
| 224 |
+
renderKPI(state);
|
| 225 |
renderGraph(state);
|
| 226 |
renderNodePicker(state);
|
| 227 |
renderTrust(state);
|
|
|
|
| 234 |
function renderTopbar(state) {
|
| 235 |
$('stat-step').textContent = state.step_number || 0;
|
| 236 |
|
| 237 |
+
const r = totalReward;
|
| 238 |
const rEl = $('stat-reward');
|
| 239 |
rEl.textContent = (r >= 0 ? '+' : '') + r.toFixed(2);
|
| 240 |
+
rEl.style.color = r >= 0 ? 'var(--s-completed)' : 'var(--s-failed)';
|
| 241 |
|
| 242 |
+
const sat = state.satisfiability_score;
|
| 243 |
const satEl = $('stat-sat');
|
| 244 |
if (sat != null) {
|
| 245 |
const pct = Math.round(sat * 100);
|
| 246 |
satEl.textContent = pct + '%';
|
| 247 |
+
satEl.style.color = pct >= 70 ? 'var(--s-completed)' : pct >= 40 ? 'var(--s-at-risk)' : 'var(--s-failed)';
|
| 248 |
} else {
|
| 249 |
satEl.textContent = '—'; satEl.style.color = '';
|
| 250 |
}
|
|
|
|
| 254 |
if (load != null) {
|
| 255 |
const pct = Math.round(load * 100);
|
| 256 |
ldEl.textContent = pct + '%';
|
| 257 |
+
ldEl.style.color = pct > 80 ? 'var(--s-failed)' : pct > 50 ? 'var(--s-at-risk)' : 'var(--s-completed)';
|
| 258 |
}
|
| 259 |
|
| 260 |
$('badge-stage').textContent = `Stage ${state.curriculum_stage || 1}`;
|
| 261 |
}
|
| 262 |
|
| 263 |
function renderScenarioHeader(state) {
|
| 264 |
+
const nodes = state.graph?.nodes || [];
|
| 265 |
+
const n = nodes.length;
|
| 266 |
const stakes = new Set(nodes.map(nd => nd.stakeholder_id).filter(Boolean));
|
| 267 |
$('sh-title').textContent = `${n} commitment${n !== 1 ? 's' : ''} — ${stakes.size} stakeholder${stakes.size !== 1 ? 's' : ''}`;
|
| 268 |
$('sh-sub').textContent = `${state.available_hours_next_48h?.toFixed(1) || '—'}h available in 48h window`;
|
| 269 |
+
}
|
| 270 |
+
|
| 271 |
+
// ── KPI Strip ────────────────────────────────────────────
|
| 272 |
+
function renderKPI(state) {
|
| 273 |
+
const nodes = state.graph?.nodes || [];
|
| 274 |
+
const total = nodes.length;
|
| 275 |
+
const done = nodes.filter(n => n.status === 'completed').length;
|
| 276 |
+
const failed = nodes.filter(n => n.status === 'failed').length;
|
| 277 |
+
const active = nodes.filter(n => ['accepted','in_progress','completed'].includes(n.status)).length;
|
| 278 |
+
|
| 279 |
+
// Fulfillment rate
|
| 280 |
+
const fulfillPct = active > 0 ? Math.round((done / active) * 100) : null;
|
| 281 |
+
setKPI('kpi-fulfill', fulfillPct != null ? fulfillPct + '%' : '—', null);
|
| 282 |
+
|
| 283 |
+
// Trust avg
|
| 284 |
+
const scores = state.trust_scores || {};
|
| 285 |
+
const vals = Object.values(scores).map(v => typeof v === 'number' ? v : (v?.trust_score || 0));
|
| 286 |
+
const trustAvg = vals.length ? vals.reduce((a,b)=>a+b,0)/vals.length : null;
|
| 287 |
+
const trustPct = trustAvg != null ? Math.round(trustAvg * 100) : null;
|
| 288 |
+
const trustDelta = (trustAvg != null && prevTrustAvg != null)
|
| 289 |
+
? Math.round((trustAvg - prevTrustAvg) * 100) : null;
|
| 290 |
+
setKPI('kpi-trust', trustPct != null ? trustPct + '%' : '—', trustDelta);
|
| 291 |
+
prevTrustAvg = trustAvg;
|
| 292 |
+
|
| 293 |
+
// Cascade count
|
| 294 |
+
setKPI('kpi-cascade', String(cascadeCount), null);
|
| 295 |
+
|
| 296 |
+
// CDG health
|
| 297 |
+
const health = state.satisfiability_score;
|
| 298 |
+
const healthPct = health != null ? Math.round(health * 100) : null;
|
| 299 |
+
const healthDelta = (health != null && prevHealth != null)
|
| 300 |
+
? Math.round((health - prevHealth) * 100) : null;
|
| 301 |
+
setKPI('kpi-health', healthPct != null ? healthPct + '%' : '—', healthDelta);
|
| 302 |
+
prevHealth = health;
|
| 303 |
+
}
|
| 304 |
+
|
| 305 |
+
function setKPI(valId, val, delta) {
|
| 306 |
+
const el = $(valId);
|
| 307 |
+
if (el) el.textContent = val;
|
| 308 |
+
const dEl = $(valId + '-delta');
|
| 309 |
+
if (dEl) {
|
| 310 |
+
if (delta == null || delta === 0) {
|
| 311 |
+
dEl.textContent = ''; dEl.className = 'kpi-delta';
|
| 312 |
+
} else {
|
| 313 |
+
dEl.textContent = (delta > 0 ? '+' : '') + delta + '%';
|
| 314 |
+
dEl.className = 'kpi-delta ' + (delta > 0 ? 'up' : 'down');
|
| 315 |
+
}
|
| 316 |
+
}
|
| 317 |
}
|
| 318 |
|
| 319 |
function renderGraphIndicators(state) {
|
| 320 |
+
const nodes = state.graph?.nodes || [];
|
| 321 |
const pending = nodes.filter(n => n.status === 'pending').length;
|
| 322 |
const active = nodes.filter(n => n.status === 'accepted').length;
|
| 323 |
+
const completed = nodes.filter(n => n.status === 'completed').length;
|
| 324 |
const failed = nodes.filter(n => n.status === 'failed').length;
|
| 325 |
|
| 326 |
+
$('ghb-pending').textContent = `${pending} pending`;
|
| 327 |
+
$('ghb-active').textContent = `${active} active`;
|
| 328 |
+
$('ghb-completed').textContent = `${completed} done`;
|
| 329 |
+
$('ghb-failed').textContent = `${failed} failed`;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 330 |
}
|
| 331 |
|
| 332 |
// ═══════════════════════════════════════════════════════════
|
| 333 |
+
// D3 GRAPH — v5 Node Anatomy
|
| 334 |
// ═══════════════════════════════════════════════════════════
|
| 335 |
function renderGraph(state) {
|
| 336 |
const graphData = state.graph;
|
|
|
|
| 343 |
const svg = d3.select('#graph-svg');
|
| 344 |
svg.selectAll('*').remove();
|
| 345 |
|
|
|
|
| 346 |
const prevPos = {};
|
| 347 |
if (d3Sim) {
|
| 348 |
d3Sim.stop();
|
|
|
|
| 350 |
}
|
| 351 |
|
| 352 |
const defs = svg.append('defs');
|
| 353 |
+
|
| 354 |
+
// Arrow markers per edge type
|
| 355 |
+
const markerDefs = [
|
| 356 |
+
{ id: 'arrow-dep', color: '#475569' },
|
| 357 |
+
{ id: 'arrow-conflict', color: '#fb7185' },
|
| 358 |
+
{ id: 'arrow-trust', color: '#8b5cf6' },
|
| 359 |
+
];
|
| 360 |
+
markerDefs.forEach(({ id, color }) => {
|
| 361 |
+
defs.append('marker')
|
| 362 |
+
.attr('id', id)
|
| 363 |
+
.attr('viewBox', '0 -4 8 8').attr('refX', 28).attr('refY', 0)
|
| 364 |
+
.attr('markerWidth', 5).attr('markerHeight', 5).attr('orient', 'auto')
|
| 365 |
+
.append('path').attr('d', 'M0,-4L8,0L0,4').attr('fill', color);
|
| 366 |
+
});
|
| 367 |
+
|
| 368 |
+
// Glow filter for selected
|
| 369 |
+
const filt = defs.append('filter').attr('id', 'glow').attr('x', '-30%').attr('y', '-30%').attr('width', '160%').attr('height', '160%');
|
| 370 |
+
filt.append('feGaussianBlur').attr('in', 'SourceGraphic').attr('stdDeviation', '4').attr('result', 'blur');
|
| 371 |
+
filt.append('feMerge').selectAll('feMergeNode').data(['blur','SourceGraphic']).join('feMergeNode').attr('in', d => d);
|
| 372 |
|
| 373 |
const g = svg.append('g');
|
| 374 |
+
svg.call(d3.zoom().scaleExtent([0.35, 3]).on('zoom', e => g.attr('transform', e.transform)));
|
| 375 |
|
| 376 |
+
// Assign letter labels A, B, C…
|
| 377 |
+
const letterMap = {};
|
| 378 |
+
graphData.nodes.forEach((n, i) => { letterMap[n.id] = String.fromCharCode(65 + (i % 26)); });
|
|
|
|
|
|
|
| 379 |
|
| 380 |
const nodes = graphData.nodes.map(n => ({
|
| 381 |
...n,
|
| 382 |
+
letter: letterMap[n.id],
|
| 383 |
+
x: prevPos[n.id]?.x ?? (W/2 + (Math.random()-0.5)*200),
|
| 384 |
+
y: prevPos[n.id]?.y ?? (H/2 + (Math.random()-0.5)*160),
|
| 385 |
}));
|
| 386 |
const links = (graphData.edges || []).map(e => ({...e}));
|
| 387 |
|
| 388 |
+
// Edges (curved paths for clarity)
|
| 389 |
+
const edgeGroup = g.append('g').attr('class', 'edges');
|
| 390 |
+
const link = edgeGroup.selectAll('path').data(links).join('path')
|
| 391 |
+
.attr('class', d => {
|
| 392 |
+
const t = d.edge_type || 'dependency';
|
| 393 |
+
if (t === 'conflict') return 'edge conflict';
|
| 394 |
+
if (t === 'trust_impact') return 'edge trust-impact';
|
| 395 |
+
return 'edge dependency';
|
| 396 |
+
})
|
| 397 |
+
.attr('fill', 'none')
|
| 398 |
+
.attr('marker-end', d => {
|
| 399 |
+
const t = d.edge_type || 'dependency';
|
| 400 |
+
if (t === 'conflict') return 'url(#arrow-conflict)';
|
| 401 |
+
if (t === 'trust_impact') return 'url(#arrow-trust)';
|
| 402 |
+
return 'url(#arrow-dep)';
|
| 403 |
+
});
|
| 404 |
+
|
| 405 |
+
const R = d => 20 + (d.urgency || 0.4) * 7;
|
| 406 |
|
| 407 |
// Node groups
|
| 408 |
+
const nodeGroup = g.append('g').attr('class', 'nodes');
|
| 409 |
+
const node = nodeGroup.selectAll('g').data(nodes).join('g')
|
| 410 |
+
.attr('class', d => `node ${d.status || 'pending'}${d.id === selectedNode ? ' selected' : ''}`)
|
| 411 |
.call(d3.drag()
|
| 412 |
+
.on('start', (e, d) => { if (!e.active) d3Sim.alphaTarget(0.3).restart(); d.fx = d.x; d.fy = d.y; })
|
| 413 |
+
.on('drag', (e, d) => { d.fx = e.x; d.fy = e.y; })
|
| 414 |
+
.on('end', (e, d) => { if (!e.active) d3Sim.alphaTarget(0); d.fx = null; d.fy = null; })
|
| 415 |
)
|
| 416 |
.on('click', (e, d) => { e.stopPropagation(); selectNode(d.id); });
|
| 417 |
|
| 418 |
+
// Pulse ring (CSS animates only .pending)
|
| 419 |
+
node.append('circle').attr('class', 'node-pulse').attr('r', d => R(d) + 10);
|
| 420 |
|
| 421 |
+
// Background fill
|
| 422 |
+
node.append('circle').attr('class', 'node-bg').attr('r', d => R(d));
|
| 423 |
|
| 424 |
+
// Status ring stroke
|
| 425 |
+
node.append('circle').attr('class', 'node-ring').attr('r', d => R(d));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 426 |
|
| 427 |
+
// Letter label (center)
|
| 428 |
node.append('text')
|
| 429 |
+
.attr('class', 'node-letter')
|
| 430 |
+
.attr('dominant-baseline', 'central')
|
| 431 |
+
.text(d => d.letter);
|
| 432 |
|
| 433 |
+
// Commitment label below node
|
| 434 |
node.append('text')
|
| 435 |
+
.attr('class', 'node-label')
|
| 436 |
+
.attr('dy', d => R(d) + 14)
|
| 437 |
.text(d => {
|
| 438 |
+
const lbl = d.label || d.id;
|
| 439 |
+
return lbl.length > 16 ? lbl.slice(0, 14) + '…' : lbl;
|
| 440 |
});
|
| 441 |
|
| 442 |
+
// Hours hint (small, below label)
|
| 443 |
+
node.append('text')
|
| 444 |
+
.attr('class', 'node-deadline')
|
| 445 |
+
.attr('dy', d => R(d) + 26)
|
| 446 |
+
.text(d => d.estimated_duration_hours ? `${d.estimated_duration_hours}h` : '');
|
| 447 |
+
|
| 448 |
// Force simulation
|
| 449 |
d3Sim = d3.forceSimulation(nodes)
|
| 450 |
+
.force('link', d3.forceLink(links).id(d => d.id).distance(130).strength(0.45))
|
| 451 |
+
.force('charge', d3.forceManyBody().strength(-380))
|
| 452 |
+
.force('center', d3.forceCenter(W/2, H/2))
|
| 453 |
+
.force('collide', d3.forceCollide(d => R(d) + 32))
|
| 454 |
.on('tick', () => {
|
| 455 |
+
link.attr('d', d => {
|
| 456 |
+
const src = d.source, tgt = d.target;
|
| 457 |
+
const dx = tgt.x - src.x, dy = tgt.y - src.y;
|
| 458 |
+
const dist = Math.sqrt(dx*dx + dy*dy) || 1;
|
| 459 |
+
const sr = R(src) + 2, tr = R(tgt) + 2;
|
| 460 |
+
const sx = src.x + (dx/dist)*sr, sy = src.y + (dy/dist)*sr;
|
| 461 |
+
const tx = tgt.x - (dx/dist)*tr, ty = tgt.y - (dy/dist)*tr;
|
| 462 |
+
// Gentle curve to distinguish overlapping edges
|
| 463 |
+
const cx = (sx+tx)/2 - (dy/dist)*18;
|
| 464 |
+
const cy = (sy+ty)/2 + (dx/dist)*18;
|
| 465 |
+
return `M${sx},${sy} Q${cx},${cy} ${tx},${ty}`;
|
| 466 |
+
});
|
| 467 |
node.attr('transform', d => `translate(${d.x},${d.y})`);
|
| 468 |
});
|
| 469 |
}
|
|
|
|
| 477 |
picker.innerHTML = '<option value="">— select commitment —</option>';
|
| 478 |
|
| 479 |
(state.graph?.nodes || []).forEach(n => {
|
| 480 |
+
const o = document.createElement('option');
|
| 481 |
+
o.value = n.id;
|
| 482 |
const dur = n.estimated_duration_hours ? `${n.estimated_duration_hours}h` : '';
|
| 483 |
o.textContent = `[${n.status}] ${n.label || n.id} ${dur}`;
|
| 484 |
if (n.status !== 'pending') o.style.color = '#5b6b82';
|
|
|
|
| 490 |
function selectNode(nodeId) {
|
| 491 |
selectedNode = nodeId;
|
| 492 |
$('node-picker').value = nodeId;
|
| 493 |
+
d3.selectAll('.node').classed('selected', d => d.id === nodeId);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 494 |
renderTargetDetail(currentState);
|
| 495 |
}
|
| 496 |
|
| 497 |
function renderTargetDetail(state) {
|
| 498 |
const el = $('target-detail');
|
| 499 |
+
if (!selectedNode || !state) {
|
| 500 |
+
el.innerHTML = '<div class="td-empty">Click a graph node or select from dropdown</div>';
|
| 501 |
+
return;
|
| 502 |
+
}
|
| 503 |
const node = (state.graph?.nodes || []).find(n => n.id === selectedNode);
|
| 504 |
if (!node) { el.innerHTML = '<div class="td-empty">Node not found</div>'; return; }
|
| 505 |
|
| 506 |
+
const dl = node.deadline
|
| 507 |
+
? new Date(node.deadline).toLocaleString([], {month:'short',day:'numeric',hour:'2-digit',minute:'2-digit'})
|
| 508 |
+
: 'flexible';
|
| 509 |
const urgPct = Math.round((node.urgency || 0) * 100);
|
| 510 |
+
const urgColor = urgPct > 70 ? 'var(--s-failed)' : urgPct > 40 ? 'var(--s-at-risk)' : 'var(--s-completed)';
|
| 511 |
|
| 512 |
el.innerHTML = `
|
| 513 |
<div class="td-name">${node.label || node.id}</div>
|
| 514 |
+
<div class="td-row"><span class="td-k">Status</span><span class="td-v"><span class="td-badge ${node.status}">${node.status}</span></span></div>
|
| 515 |
<div class="td-row"><span class="td-k">Duration</span><span class="td-v">${node.estimated_duration_hours || '?'}h</span></div>
|
| 516 |
<div class="td-row"><span class="td-k">Deadline</span><span class="td-v">${dl}</span></div>
|
| 517 |
+
<div class="td-row"><span class="td-k">Urgency</span><span class="td-v" style="color:${urgColor}">${urgPct}%</span></div>
|
| 518 |
<div class="td-row"><span class="td-k">Stakeholder</span><span class="td-v">${node.stakeholder_id || '—'}</span></div>
|
| 519 |
${node.type ? `<div class="td-row"><span class="td-k">Type</span><span class="td-v">${node.type}</span></div>` : ''}
|
| 520 |
`;
|
|
|
|
| 524 |
// TRUST BARS
|
| 525 |
// ═══════════════════════════════════════════════════════════
|
| 526 |
function renderTrust(state) {
|
|
|
|
| 527 |
const scores = state.trust_scores || state.trust_entries || {};
|
| 528 |
const mdTrust = state.multidim_trust || {};
|
| 529 |
const list = $('trust-list');
|
| 530 |
list.innerHTML = '';
|
| 531 |
|
| 532 |
+
const vals = Object.values(scores).map(v => typeof v === 'number' ? v : (v?.trust_score || 0));
|
| 533 |
const avg = vals.length ? vals.reduce((a,b)=>a+b,0)/vals.length : null;
|
| 534 |
+
|
| 535 |
const avgBadge = $('trust-avg-badge');
|
| 536 |
if (avg !== null) {
|
| 537 |
+
avgBadge.textContent = `avg ${(avg*100).toFixed(0)}%`;
|
| 538 |
+
avgBadge.className = `mc-badge ${avg >= 0.6 ? 'green' : avg >= 0.4 ? 'blue' : 'red'}`;
|
| 539 |
+
}
|
| 540 |
+
|
| 541 |
+
if (!Object.keys(scores).length) {
|
| 542 |
+
list.innerHTML = '<div style="color:var(--t3);font-size:11px;padding:10px 14px">No stakeholders yet</div>';
|
| 543 |
+
return;
|
| 544 |
}
|
| 545 |
|
| 546 |
Object.entries(scores).forEach(([sid, raw]) => {
|
| 547 |
+
const score = typeof raw === 'number' ? raw : (raw?.trust_score || 0);
|
| 548 |
const pct = Math.round(score * 100);
|
| 549 |
+
const tier = score >= 0.65 ? 'hi' : score >= 0.45 ? 'mid' : 'lo';
|
| 550 |
|
| 551 |
const md = mdTrust[sid];
|
| 552 |
+
const dimsHtml = md ? `
|
| 553 |
+
<div class="te-dims">
|
| 554 |
+
<span class="te-dim">R:<span>${((md.reliability||0)*100).toFixed(0)}</span></span>
|
| 555 |
+
<span class="te-dim">C:<span>${((md.competence||0)*100).toFixed(0)}</span></span>
|
| 556 |
+
<span class="te-dim">B:<span>${((md.benevolence||0)*100).toFixed(0)}</span></span>
|
| 557 |
+
</div>` : '';
|
|
|
|
|
|
|
|
|
|
| 558 |
|
| 559 |
list.insertAdjacentHTML('beforeend', `
|
| 560 |
+
<div class="te">
|
| 561 |
+
<div class="te-row1">
|
| 562 |
<span class="te-name">${sid}</span>
|
| 563 |
+
<div class="te-score-wrap">
|
| 564 |
+
<span class="te-score ${tier}">${pct}%</span>
|
| 565 |
+
</div>
|
|
|
|
| 566 |
</div>
|
| 567 |
+
<div class="te-track"><div class="te-fill ${tier}" style="width:${pct}%"></div></div>
|
| 568 |
${dimsHtml}
|
| 569 |
</div>
|
| 570 |
`);
|
| 571 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
| 572 |
}
|
| 573 |
|
| 574 |
// ═══════════════════════════════════════════════════════════
|
|
|
|
| 581 |
.filter(n => ['accepted','in_progress'].includes(n.status))
|
| 582 |
.reduce((s, n) => s + (n.estimated_duration_hours || 0), 0);
|
| 583 |
|
| 584 |
+
const pct = Math.min(100, Math.round((committed / avail) * 100));
|
| 585 |
+
const cls = pct >= 90 ? 'crit' : pct >= 70 ? 'warn' : '';
|
|
|
|
|
|
|
|
|
|
| 586 |
|
| 587 |
+
$('capacity-display').innerHTML = `
|
| 588 |
+
<div class="cap-header">
|
| 589 |
+
<span class="cap-val">${committed.toFixed(1)}</span>
|
| 590 |
+
<span class="cap-sep">/</span>
|
| 591 |
+
<span class="cap-of">${avail.toFixed(1)}</span>
|
| 592 |
+
<span class="cap-unit">hours committed</span>
|
| 593 |
+
</div>
|
| 594 |
+
<div class="cap-track">
|
| 595 |
+
<div class="cap-fill${cls ? ' '+cls : ''}" style="width:${pct}%"></div>
|
| 596 |
+
</div>
|
| 597 |
+
<div class="cap-zones">
|
| 598 |
+
<span style="color:var(--s-completed)">Safe <70%</span>
|
| 599 |
+
<span style="color:var(--s-at-risk)">⚠ 70–90%</span>
|
| 600 |
+
<span style="color:var(--s-failed)">Critical >90%</span>
|
| 601 |
+
</div>
|
| 602 |
+
`;
|
| 603 |
}
|
| 604 |
|
| 605 |
// ═══════════════════════════════════════════════════════════
|
|
|
|
| 607 |
// ═══════════════════════════════════════════════════════════
|
| 608 |
function renderReward(stepData) {
|
| 609 |
const el = $('reward-display');
|
| 610 |
+
if (!stepData?.reward_components && !stepData?.info?.reward_components) return;
|
|
|
|
|
|
|
| 611 |
|
| 612 |
+
const rc = stepData.info?.reward_components || stepData.reward_components;
|
| 613 |
+
const r = stepData.reward || 0;
|
| 614 |
+
const rCls = r >= 0 ? 'pos' : 'neg';
|
| 615 |
+
const rSign = r >= 0 ? '+' : '';
|
|
|
|
| 616 |
|
| 617 |
const rows = [
|
| 618 |
+
{ k: 'Fulfillment', v: rc?.fulfillment || 0 },
|
| 619 |
+
{ k: 'Trust Δ', v: rc?.trust_delta || 0 },
|
| 620 |
+
{ k: 'Proactive', v: rc?.proactive || 0 },
|
| 621 |
+
{ k: 'Accuracy', v: rc?.feasibility_acc || 0 },
|
| 622 |
+
{ k: '— Broken', v: -(rc?.broken_penalty || 0) },
|
| 623 |
+
{ k: '— Over-refusal', v: -(rc?.overrefusal_penalty || 0) },
|
| 624 |
+
{ k: '— Silent drop', v: -(rc?.silent_drop_penalty || 0) },
|
| 625 |
];
|
| 626 |
|
| 627 |
el.innerHTML = `
|
| 628 |
+
<div class="rwd-total ${rCls}">${rSign}${r.toFixed(4)}</div>
|
| 629 |
${rows.map(row => {
|
| 630 |
+
const vCls = row.v > 0.001 ? 'pos' : row.v < -0.001 ? 'neg' : 'zero';
|
| 631 |
const vSign = row.v >= 0 ? '+' : '';
|
| 632 |
return `<div class="rwd-row">
|
| 633 |
+
<span class="rwd-k">${row.k}</span>
|
| 634 |
+
<span class="rwd-v ${vCls}">${vSign}${row.v.toFixed(4)}</span>
|
| 635 |
</div>`;
|
| 636 |
}).join('')}
|
| 637 |
`;
|
|
|
|
| 641 |
// CONVERSATION FEED
|
| 642 |
// ═══════════════════════════════════════════════════════════
|
| 643 |
function clearFeed() {
|
|
|
|
| 644 |
document.querySelectorAll('#message-feed .msg').forEach(el => el.remove());
|
| 645 |
$('feed-empty').classList.remove('hidden');
|
| 646 |
}
|
| 647 |
|
| 648 |
function feedMsg(html) {
|
|
|
|
| 649 |
$('feed-empty').classList.add('hidden');
|
| 650 |
+
const feed = $('message-feed');
|
| 651 |
feed.insertAdjacentHTML('beforeend', html);
|
| 652 |
feed.scrollTop = feed.scrollHeight;
|
| 653 |
}
|
|
|
|
| 672 |
}
|
| 673 |
|
| 674 |
function feedThink(reasoning) {
|
| 675 |
+
const lines = reasoning.split('\n').filter(l => l.trim());
|
| 676 |
+
const bodyHtml = lines.map(l => `<div>${l.trim()}</div>`).join('');
|
|
|
|
| 677 |
feedMsg(`
|
| 678 |
<div class="msg msg-think">
|
| 679 |
<div class="think-header">🧠 Agent Reasoning</div>
|
| 680 |
+
<div class="think-body">${bodyHtml || reasoning}</div>
|
| 681 |
</div>
|
| 682 |
`);
|
| 683 |
}
|
| 684 |
|
| 685 |
function feedDecision(actionType, node, reward, stakeholderResponses) {
|
| 686 |
+
const icons = { accept:'✅', decline:'❌', counter_propose:'🔄', do_nothing:'⏳', renegotiate:'🤝' };
|
| 687 |
+
const labels = { accept:'Accepted', decline:'Declined', counter_propose:'Counter-proposed', do_nothing:'Waited', renegotiate:'Renegotiated' };
|
| 688 |
+
const isPos = ['accept','counter_propose','renegotiate'].includes(actionType);
|
| 689 |
+
const rSign = reward >= 0 ? '+' : '';
|
| 690 |
|
| 691 |
let responsesHtml = '';
|
| 692 |
if (stakeholderResponses) {
|
| 693 |
Object.entries(stakeholderResponses).forEach(([sid, msg]) => {
|
| 694 |
+
if (msg) responsesHtml += `<div style="margin-top:4px;font-size:11px;color:var(--t3)"><em>${sid}: "${msg}"</em></div>`;
|
| 695 |
});
|
| 696 |
}
|
| 697 |
|
| 698 |
feedMsg(`
|
| 699 |
+
<div class="msg msg-decision ${isPos ? '' : 'neg'}">
|
| 700 |
<div class="md-action">${icons[actionType] || '•'} ${labels[actionType] || actionType}</div>
|
| 701 |
<div class="md-target">${node ? `"${node.label || node.id}"` : '—'}</div>
|
| 702 |
${responsesHtml}
|
|
|
|
| 724 |
const rSign = reward >= 0 ? '+' : '';
|
| 725 |
|
| 726 |
if (track.children.length > 0) {
|
| 727 |
+
track.insertAdjacentHTML('beforeend', '<div class="tl-conn"></div>');
|
| 728 |
}
|
|
|
|
| 729 |
track.insertAdjacentHTML('beforeend', `
|
| 730 |
<div class="tl-step ${actionType}" title="Step ${step}: ${actionType} — ${label}">
|
| 731 |
<div class="tl-icon">${icons[actionType] || '•'}</div>
|
| 732 |
+
<div class="tl-num">s${step}</div>
|
| 733 |
+
<div class="tl-r ${rCls}">${rSign}${reward.toFixed(2)}</div>
|
| 734 |
</div>
|
| 735 |
`);
|
|
|
|
| 736 |
track.scrollLeft = track.scrollWidth;
|
| 737 |
}
|
| 738 |
|
| 739 |
// ═══════════════════════════════════════════════════════════
|
| 740 |
+
// EVENT LOG
|
| 741 |
// ═══════════════════════════════════════════════════════════
|
| 742 |
function clearLog() { $('log-list').innerHTML = ''; }
|
| 743 |
|
| 744 |
function logAdd(type, text) {
|
| 745 |
+
const el = document.createElement('div');
|
| 746 |
+
el.className = `log-item ${type}`;
|
| 747 |
el.textContent = text;
|
| 748 |
+
const list = $('log-list');
|
| 749 |
list.appendChild(el);
|
| 750 |
while (list.children.length > 60) list.removeChild(list.firstChild);
|
| 751 |
list.scrollTop = list.scrollHeight;
|
|
|
|
| 757 |
async function fetchJSON(url, { method = 'GET', body } = {}) {
|
| 758 |
const opts = { method, headers: { 'Content-Type': 'application/json' } };
|
| 759 |
if (body) opts.body = JSON.stringify(body);
|
| 760 |
+
const res = await fetch(url, opts);
|
| 761 |
if (!res.ok) throw new Error(`HTTP ${res.status}`);
|
| 762 |
return res.json();
|
| 763 |
}
|
|
|
|
| 778 |
// ═══════════════════════════════════════════════════════════
|
| 779 |
// COMPARE MODE
|
| 780 |
// ═══════════════════════════════════════════════════════════
|
| 781 |
+
let compareData = null;
|
| 782 |
+
let compareStepIdx = 0;
|
| 783 |
let compareAutoTimer = null;
|
| 784 |
|
| 785 |
const SCENARIO_DESCS = {
|
| 786 |
+
scenario_04_deadline_crunch: { icon:'⏰', name:'Deadline Crunch', desc:'Back-to-back deadlines — agent must triage' },
|
| 787 |
+
scenario_07_simultaneous_infeasibility: { icon:'💥', name:'Simultaneous Infeasibility', desc:'3 requests arrive at once — together impossible' },
|
| 788 |
+
scenario_10_deadline_cascade: { icon:'🌊', name:'Deadline Cascade Chain', desc:'A→B→C dependency chain — one slip cascades' },
|
| 789 |
+
scenario_11_impossible_math: { icon:'🧮', name:'Impossible Math', desc:'11.5h of work in 6h window — must decline' },
|
| 790 |
+
scenario_12_force_majeure_recovery: { icon:'🚨', name:'Force Majeure Recovery', desc:'P0 incident blocks 7h mid-episode — renegotiate' },
|
| 791 |
};
|
| 792 |
|
| 793 |
function openCompare() {
|
|
|
|
| 818 |
$('cmp-body').classList.add('hidden');
|
| 819 |
|
| 820 |
try {
|
| 821 |
+
const data = await fetchJSON(`${API}/api/compare`, { method: 'POST', body: { scenario_id: scenarioId } });
|
|
|
|
|
|
|
|
|
|
| 822 |
compareData = data;
|
| 823 |
compareStepIdx = 0;
|
| 824 |
|
|
|
|
| 829 |
renderCmpStep(0);
|
| 830 |
$('cmp-step-label').textContent = `Step 1 / ${Math.max(data.naive.steps.length, data.vergil.steps.length)}`;
|
| 831 |
} catch(e) {
|
| 832 |
+
$('cmp-loading').innerHTML = `<p style="color:var(--s-failed)">Error: ${e.message}</p>`;
|
| 833 |
}
|
| 834 |
}
|
| 835 |
|
|
|
|
| 837 |
const n = data.naive.metrics;
|
| 838 |
const v = data.vergil.metrics;
|
| 839 |
|
| 840 |
+
const rDelta = (v.total_reward || 0) - (n.total_reward || 0);
|
| 841 |
+
const satDelta = (v.final_sat || 0) - (n.final_sat || 0);
|
| 842 |
+
const failAvoid = (n.n_failed || 0) - (v.n_failed || 0);
|
| 843 |
+
const trustDelta= (v.avg_trust || 0) - (n.avg_trust || 0);
|
| 844 |
|
| 845 |
+
const fmt = (val, isCount = false) =>
|
| 846 |
+
isCount ? `${val >= 0 ? '+' : ''}${val}` : `${val >= 0 ? '+' : ''}${val.toFixed(2)}`;
|
| 847 |
+
const cls = val => val > 0 ? 'better' : val < 0 ? 'worse' : '';
|
|
|
|
|
|
|
| 848 |
|
| 849 |
$('dv-reward').textContent = fmt(rDelta);
|
| 850 |
+
$('dv-reward').className = `dr-v ${cls(rDelta)}`;
|
|
|
|
| 851 |
$('dv-sat').textContent = fmt(satDelta * 100) + '%';
|
| 852 |
+
$('dv-sat').className = `dr-v ${cls(satDelta)}`;
|
|
|
|
| 853 |
$('dv-fail').textContent = fmt(failAvoid, true);
|
| 854 |
+
$('dv-fail').className = `dr-v ${cls(failAvoid)}`;
|
|
|
|
| 855 |
$('dv-trust').textContent = fmt(trustDelta * 100) + '%';
|
| 856 |
+
$('dv-trust').className = `dr-v ${cls(trustDelta)}`;
|
| 857 |
|
|
|
|
| 858 |
const improved = [rDelta > 0, satDelta > 0, failAvoid >= 0, trustDelta > 0].filter(Boolean).length;
|
| 859 |
$('cmp-verdict').textContent =
|
| 860 |
improved >= 3 ? '✅ VERGIL significantly outperforms naive agent' :
|
| 861 |
improved >= 2 ? '↑ VERGIL shows clear improvement' :
|
| 862 |
'~ Results comparable — try a harder scenario';
|
| 863 |
|
|
|
|
| 864 |
renderSideStats('naive-stats', n);
|
| 865 |
renderSideStats('vergil-stats', v);
|
|
|
|
|
|
|
| 866 |
renderMiniGraph('#cmp-svg-naive', data.naive.final_graph, 'naive');
|
| 867 |
renderMiniGraph('#cmp-svg-vergil', data.vergil.final_graph, 'vergil');
|
| 868 |
}
|
| 869 |
|
| 870 |
function renderSideStats(elId, metrics) {
|
| 871 |
+
const rColor = (metrics.total_reward||0) >= 0 ? 'var(--s-completed)' : 'var(--s-failed)';
|
| 872 |
+
const fColor = (metrics.n_failed||0) > 0 ? 'var(--s-failed)' : 'var(--s-completed)';
|
| 873 |
+
$(elId).innerHTML = `
|
| 874 |
+
<div class="css-stat"><div class="css-lbl">Reward</div>
|
| 875 |
+
<div class="css-v" style="color:${rColor}">${(metrics.total_reward||0) >= 0 ? '+' : ''}${(metrics.total_reward||0).toFixed(2)}</div></div>
|
| 876 |
+
<div class="css-stat"><div class="css-lbl">SAT</div>
|
| 877 |
+
<div class="css-v">${Math.round((metrics.final_sat||0)*100)}%</div></div>
|
| 878 |
+
<div class="css-stat"><div class="css-lbl">Failed</div>
|
| 879 |
+
<div class="css-v" style="color:${fColor}">${metrics.n_failed||0}</div></div>
|
| 880 |
+
<div class="css-stat"><div class="css-lbl">Trust</div>
|
| 881 |
+
<div class="css-v">${Math.round((metrics.avg_trust||0)*100)}%</div></div>
|
| 882 |
`;
|
| 883 |
}
|
| 884 |
|
|
|
|
| 895 |
const vStep = vSteps[compareStepIdx];
|
| 896 |
|
| 897 |
function stepHtml(step, isVergil) {
|
| 898 |
+
if (!step) return '<em style="color:var(--t3)">No action</em>';
|
| 899 |
const icon = actionIcon(step.action);
|
| 900 |
const r = step.reward || 0;
|
| 901 |
const rS = r >= 0 ? '+' : '';
|
| 902 |
if (isVergil && step.reasoning) {
|
| 903 |
return `${icon} <strong>${step.action}</strong> → ${step.target || '—'}<br>
|
| 904 |
<span style="color:#c084fc;margin-top:3px;display:block">🧠 ${step.reasoning}</span>
|
| 905 |
+
<span style="color:var(--t3)">${rS}${r.toFixed(3)}</span>`;
|
| 906 |
}
|
| 907 |
+
return `${icon} <strong>${step.action}</strong> → ${step.target || '—'}<span style="color:var(--t3);margin-left:8px">${rS}${r.toFixed(3)}</span>`;
|
| 908 |
}
|
| 909 |
|
| 910 |
+
$('naive-step-display').innerHTML = stepHtml(nStep, false);
|
| 911 |
+
$('vergil-step-display').innerHTML = stepHtml(vStep, true);
|
| 912 |
|
|
|
|
| 913 |
if (nStep?.caused_failure) {
|
| 914 |
$('cmp-svg-naive').classList.add('cascade-active');
|
| 915 |
setTimeout(() => $('cmp-svg-naive').classList.remove('cascade-active'), 800);
|
| 916 |
}
|
| 917 |
}
|
| 918 |
|
| 919 |
+
function compareStep(delta) { renderCmpStep(compareStepIdx + delta); }
|
|
|
|
|
|
|
| 920 |
|
| 921 |
function toggleCompareAuto() {
|
| 922 |
const btn = $('btn-cmp-auto');
|
|
|
|
| 943 |
}
|
| 944 |
|
| 945 |
function renderMiniGraph(svgSelector, graphData, side) {
|
| 946 |
+
if (!graphData?.nodes?.length) return;
|
| 947 |
+
const svgEl = document.querySelector(svgSelector);
|
|
|
|
| 948 |
if (!svgEl) return;
|
| 949 |
const W = svgEl.clientWidth || 500;
|
| 950 |
const H = svgEl.clientHeight || 300;
|
| 951 |
|
| 952 |
+
const svg = d3.select(svgSelector);
|
| 953 |
svg.selectAll('*').remove();
|
| 954 |
|
| 955 |
+
const colorMap = {
|
| 956 |
+
pending: '#818cf8', accepted: '#38bdf8',
|
| 957 |
+
completed: '#34d399', failed: '#fb7185',
|
| 958 |
+
};
|
| 959 |
+
|
| 960 |
const g = svg.append('g');
|
| 961 |
+
const nodes = graphData.nodes.map(n => ({ ...n, x: W/2 + (Math.random()-.5)*200, y: H/2 + (Math.random()-.5)*200 }));
|
| 962 |
const links = (graphData.edges || []).map(e => ({...e}));
|
| 963 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 964 |
const link = g.append('g').selectAll('line').data(links).join('line')
|
| 965 |
+
.attr('stroke', '#2d3f58').attr('stroke-width', 1.5).attr('stroke-opacity', 0.6);
|
| 966 |
|
| 967 |
const node = g.append('g').selectAll('g').data(nodes).join('g');
|
| 968 |
|
| 969 |
node.append('circle')
|
| 970 |
+
.attr('r', d => 10 + (d.urgency||0.5)*5)
|
| 971 |
+
.attr('fill', d => `${colorMap[d.status] || '#475569'}18`)
|
| 972 |
+
.attr('stroke', d => colorMap[d.status] || '#475569')
|
| 973 |
+
.attr('stroke-width', d => d.status === 'failed' ? 2.5 : 1.5)
|
| 974 |
.style('filter', d => d.status === 'failed' && side === 'naive'
|
| 975 |
+
? 'drop-shadow(0 0 8px rgba(251,113,133,0.8))' : 'none');
|
| 976 |
|
| 977 |
node.append('text')
|
| 978 |
.attr('text-anchor', 'middle').attr('dominant-baseline', 'central')
|
| 979 |
+
.attr('fill', '#94a3b8').attr('font-size', '9px').attr('font-weight', '600')
|
| 980 |
+
.attr('pointer-events', 'none')
|
| 981 |
.text(d => d.label?.slice(0,8) || d.id?.slice(0,6));
|
| 982 |
|
| 983 |
const sim = d3.forceSimulation(nodes)
|
|
|
|
| 991 |
node.attr('transform', d=>`translate(${d.x},${d.y})`);
|
| 992 |
});
|
| 993 |
|
|
|
|
| 994 |
setTimeout(() => sim.stop(), 3000);
|
| 995 |
}
|
|
@@ -18,25 +18,25 @@
|
|
| 18 |
<span class="brand-glyph">⟁</span>
|
| 19 |
<span class="brand-name">VERGIL</span>
|
| 20 |
</div>
|
| 21 |
-
<
|
| 22 |
</div>
|
| 23 |
|
| 24 |
-
<div class="topbar-
|
| 25 |
-
<div class="stat-
|
| 26 |
-
<span class="
|
| 27 |
-
<span class="
|
| 28 |
</div>
|
| 29 |
-
<div class="stat-
|
| 30 |
-
<span class="
|
| 31 |
-
<span class="
|
| 32 |
</div>
|
| 33 |
-
<div class="stat-
|
| 34 |
-
<span class="
|
| 35 |
-
<span class="
|
| 36 |
</div>
|
| 37 |
-
<div class="stat-
|
| 38 |
-
<span class="
|
| 39 |
-
<span class="
|
| 40 |
</div>
|
| 41 |
</div>
|
| 42 |
|
|
@@ -49,6 +49,42 @@
|
|
| 49 |
</div>
|
| 50 |
</header>
|
| 51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
<!-- ══════════════════ THREE-COLUMN THEATER ══════════════════ -->
|
| 53 |
<main id="theater">
|
| 54 |
|
|
@@ -56,17 +92,15 @@
|
|
| 56 |
<section id="conv-panel">
|
| 57 |
|
| 58 |
<div id="scenario-header">
|
| 59 |
-
<div class="sh-
|
| 60 |
-
<div class="sh-
|
| 61 |
-
|
| 62 |
-
<div class="sh-sub" id="sh-sub">Select a scenario and click New Episode</div>
|
| 63 |
-
</div>
|
| 64 |
</div>
|
| 65 |
|
| 66 |
<div id="message-feed">
|
| 67 |
<div class="feed-empty" id="feed-empty">
|
| 68 |
<div class="fe-icon">🧠</div>
|
| 69 |
-
<div>Agent reasoning will appear here as it makes decisions.</div>
|
| 70 |
</div>
|
| 71 |
</div>
|
| 72 |
|
|
@@ -89,10 +123,11 @@
|
|
| 89 |
<section id="graph-panel">
|
| 90 |
<div id="graph-header-bar">
|
| 91 |
<span class="ghb-title">Commitment Dependency Graph</span>
|
| 92 |
-
<div class="ghb-
|
| 93 |
-
<span class="ghb-
|
| 94 |
-
<span class="ghb-
|
| 95 |
-
<span class="ghb-
|
|
|
|
| 96 |
</div>
|
| 97 |
</div>
|
| 98 |
|
|
@@ -111,6 +146,7 @@
|
|
| 111 |
<span class="gl-item"><span class="gl-dot accepted"></span>Accepted</span>
|
| 112 |
<span class="gl-item"><span class="gl-dot completed"></span>Completed</span>
|
| 113 |
<span class="gl-item"><span class="gl-dot failed"></span>Failed</span>
|
|
|
|
| 114 |
<span class="gl-item"><span class="gl-line dep"></span>Depends on</span>
|
| 115 |
<span class="gl-item"><span class="gl-line conflict"></span>Conflicts</span>
|
| 116 |
</div>
|
|
@@ -121,37 +157,22 @@
|
|
| 121 |
|
| 122 |
<!-- Trust Network -->
|
| 123 |
<div class="mc" id="mc-trust">
|
| 124 |
-
<div class="mc-
|
| 125 |
<span>Trust Network</span>
|
| 126 |
-
<span class="mc-
|
| 127 |
</div>
|
| 128 |
<div id="trust-list"></div>
|
| 129 |
</div>
|
| 130 |
|
| 131 |
<!-- Schedule Capacity -->
|
| 132 |
<div class="mc" id="mc-capacity">
|
| 133 |
-
<div class="mc-
|
| 134 |
-
<div id="capacity-display">
|
| 135 |
-
<div class="cap-numbers">
|
| 136 |
-
<span id="cap-committed">—h</span>
|
| 137 |
-
<span class="cap-slash">/</span>
|
| 138 |
-
<span id="cap-available">—h</span>
|
| 139 |
-
<span class="cap-label">committed of available (48h window)</span>
|
| 140 |
-
</div>
|
| 141 |
-
<div class="cap-bar-track">
|
| 142 |
-
<div class="cap-bar-fill" id="cap-bar-fill"></div>
|
| 143 |
-
</div>
|
| 144 |
-
<div class="cap-legend">
|
| 145 |
-
<span class="cap-ok">Safe <70%</span>
|
| 146 |
-
<span class="cap-warn">Warning 70–90%</span>
|
| 147 |
-
<span class="cap-crit">Critical >90%</span>
|
| 148 |
-
</div>
|
| 149 |
-
</div>
|
| 150 |
</div>
|
| 151 |
|
| 152 |
<!-- Last Decision Score -->
|
| 153 |
<div class="mc" id="mc-reward">
|
| 154 |
-
<div class="mc-
|
| 155 |
<div id="reward-display">
|
| 156 |
<div class="rwd-empty">Take an action to see reward breakdown</div>
|
| 157 |
</div>
|
|
@@ -159,7 +180,7 @@
|
|
| 159 |
|
| 160 |
<!-- Node Detail -->
|
| 161 |
<div class="mc" id="mc-target">
|
| 162 |
-
<div class="mc-
|
| 163 |
<div id="target-detail">
|
| 164 |
<div class="td-empty">Click a graph node or select from the dropdown</div>
|
| 165 |
</div>
|
|
@@ -167,7 +188,7 @@
|
|
| 167 |
|
| 168 |
<!-- Event Log -->
|
| 169 |
<div class="mc mc-log" id="mc-log">
|
| 170 |
-
<div class="mc-
|
| 171 |
<div id="log-list"></div>
|
| 172 |
</div>
|
| 173 |
|
|
@@ -186,7 +207,7 @@
|
|
| 186 |
|
| 187 |
<div class="cmp-topbar">
|
| 188 |
<div class="cmp-scenario-info" id="cmp-scenario-info">
|
| 189 |
-
<span class="cmp-
|
| 190 |
<div>
|
| 191 |
<div class="cmp-scenario-name" id="cmp-scenario-name">Select a scenario</div>
|
| 192 |
<div class="cmp-scenario-desc" id="cmp-scenario-desc">Loading…</div>
|
|
@@ -218,46 +239,46 @@
|
|
| 218 |
|
| 219 |
<!-- LEFT: Naive agent -->
|
| 220 |
<div class="cmp-side naive-side">
|
| 221 |
-
<div class="cmp-side-
|
| 222 |
<span class="csh-badge">❌ Naive Agent</span>
|
| 223 |
-
<span class="csh-
|
| 224 |
</div>
|
| 225 |
<svg id="cmp-svg-naive" class="cmp-svg"></svg>
|
| 226 |
<div class="cmp-side-stats" id="naive-stats"></div>
|
| 227 |
-
<div class="cmp-
|
| 228 |
</div>
|
| 229 |
|
| 230 |
<!-- CENTER: Delta column -->
|
| 231 |
<div class="cmp-center">
|
| 232 |
<div class="cmp-delta-title">IMPROVEMENT</div>
|
| 233 |
<div class="delta-row" id="d-reward">
|
| 234 |
-
<div class="dr-
|
| 235 |
-
<div class="dr-
|
| 236 |
</div>
|
| 237 |
<div class="delta-row" id="d-sat">
|
| 238 |
-
<div class="dr-
|
| 239 |
-
<div class="dr-
|
| 240 |
</div>
|
| 241 |
<div class="delta-row" id="d-fail">
|
| 242 |
-
<div class="dr-
|
| 243 |
-
<div class="dr-
|
| 244 |
</div>
|
| 245 |
<div class="delta-row" id="d-trust">
|
| 246 |
-
<div class="dr-
|
| 247 |
-
<div class="dr-
|
| 248 |
</div>
|
| 249 |
<div class="cmp-verdict" id="cmp-verdict"></div>
|
| 250 |
</div>
|
| 251 |
|
| 252 |
<!-- RIGHT: VERGIL agent -->
|
| 253 |
<div class="cmp-side vergil-side">
|
| 254 |
-
<div class="cmp-side-
|
| 255 |
<span class="csh-badge">✅ VERGIL Agent</span>
|
| 256 |
-
<span class="csh-
|
| 257 |
</div>
|
| 258 |
<svg id="cmp-svg-vergil" class="cmp-svg"></svg>
|
| 259 |
<div class="cmp-side-stats" id="vergil-stats"></div>
|
| 260 |
-
<div class="cmp-
|
| 261 |
</div>
|
| 262 |
|
| 263 |
</div>
|
|
|
|
| 18 |
<span class="brand-glyph">⟁</span>
|
| 19 |
<span class="brand-name">VERGIL</span>
|
| 20 |
</div>
|
| 21 |
+
<span class="brand-version" id="badge-stage">Stage 1</span>
|
| 22 |
</div>
|
| 23 |
|
| 24 |
+
<div class="topbar-center">
|
| 25 |
+
<div class="stat-chip">
|
| 26 |
+
<span class="sc-label">STEP</span>
|
| 27 |
+
<span class="sc-val" id="stat-step">0</span>
|
| 28 |
</div>
|
| 29 |
+
<div class="stat-chip">
|
| 30 |
+
<span class="sc-label">REWARD</span>
|
| 31 |
+
<span class="sc-val" id="stat-reward">+0.00</span>
|
| 32 |
</div>
|
| 33 |
+
<div class="stat-chip">
|
| 34 |
+
<span class="sc-label">HEALTH</span>
|
| 35 |
+
<span class="sc-val" id="stat-sat">—</span>
|
| 36 |
</div>
|
| 37 |
+
<div class="stat-chip">
|
| 38 |
+
<span class="sc-label">LOAD</span>
|
| 39 |
+
<span class="sc-val" id="stat-load">—</span>
|
| 40 |
</div>
|
| 41 |
</div>
|
| 42 |
|
|
|
|
| 49 |
</div>
|
| 50 |
</header>
|
| 51 |
|
| 52 |
+
<!-- ══════════════════ KPI STRIP ══════════════════ -->
|
| 53 |
+
<div id="kpi-strip">
|
| 54 |
+
<div class="kpi-card fulfill">
|
| 55 |
+
<div class="kpi-label">Fulfillment Rate</div>
|
| 56 |
+
<div class="kpi-row">
|
| 57 |
+
<div class="kpi-val" id="kpi-fulfill">—</div>
|
| 58 |
+
<div class="kpi-delta" id="kpi-fulfill-delta"></div>
|
| 59 |
+
</div>
|
| 60 |
+
<div class="kpi-sub">commitments completed</div>
|
| 61 |
+
</div>
|
| 62 |
+
<div class="kpi-card trust">
|
| 63 |
+
<div class="kpi-label">Avg Trust Score</div>
|
| 64 |
+
<div class="kpi-row">
|
| 65 |
+
<div class="kpi-val" id="kpi-trust">—</div>
|
| 66 |
+
<div class="kpi-delta" id="kpi-trust-delta"></div>
|
| 67 |
+
</div>
|
| 68 |
+
<div class="kpi-sub">across all stakeholders</div>
|
| 69 |
+
</div>
|
| 70 |
+
<div class="kpi-card cascade">
|
| 71 |
+
<div class="kpi-label">Cascade Events</div>
|
| 72 |
+
<div class="kpi-row">
|
| 73 |
+
<div class="kpi-val" id="kpi-cascade">0</div>
|
| 74 |
+
<div class="kpi-delta" id="kpi-cascade-delta"></div>
|
| 75 |
+
</div>
|
| 76 |
+
<div class="kpi-sub">dependency failures</div>
|
| 77 |
+
</div>
|
| 78 |
+
<div class="kpi-card health">
|
| 79 |
+
<div class="kpi-label">CDG Health</div>
|
| 80 |
+
<div class="kpi-row">
|
| 81 |
+
<div class="kpi-val" id="kpi-health">—</div>
|
| 82 |
+
<div class="kpi-delta" id="kpi-health-delta"></div>
|
| 83 |
+
</div>
|
| 84 |
+
<div class="kpi-sub">satisfiability score</div>
|
| 85 |
+
</div>
|
| 86 |
+
</div>
|
| 87 |
+
|
| 88 |
<!-- ══════════════════ THREE-COLUMN THEATER ══════════════════ -->
|
| 89 |
<main id="theater">
|
| 90 |
|
|
|
|
| 92 |
<section id="conv-panel">
|
| 93 |
|
| 94 |
<div id="scenario-header">
|
| 95 |
+
<div class="sh-eyebrow">Current Scenario</div>
|
| 96 |
+
<div class="sh-title" id="sh-title">Start an episode to begin</div>
|
| 97 |
+
<div class="sh-sub" id="sh-sub">Select a scenario and click New Episode</div>
|
|
|
|
|
|
|
| 98 |
</div>
|
| 99 |
|
| 100 |
<div id="message-feed">
|
| 101 |
<div class="feed-empty" id="feed-empty">
|
| 102 |
<div class="fe-icon">🧠</div>
|
| 103 |
+
<div class="fe-text">Agent reasoning will appear here as it makes decisions through the Commitment Dependency Graph.</div>
|
| 104 |
</div>
|
| 105 |
</div>
|
| 106 |
|
|
|
|
| 123 |
<section id="graph-panel">
|
| 124 |
<div id="graph-header-bar">
|
| 125 |
<span class="ghb-title">Commitment Dependency Graph</span>
|
| 126 |
+
<div class="ghb-chips">
|
| 127 |
+
<span class="ghb-chip pending" id="ghb-pending">0 pending</span>
|
| 128 |
+
<span class="ghb-chip active" id="ghb-active">0 active</span>
|
| 129 |
+
<span class="ghb-chip completed" id="ghb-completed">0 done</span>
|
| 130 |
+
<span class="ghb-chip failed" id="ghb-failed">0 failed</span>
|
| 131 |
</div>
|
| 132 |
</div>
|
| 133 |
|
|
|
|
| 146 |
<span class="gl-item"><span class="gl-dot accepted"></span>Accepted</span>
|
| 147 |
<span class="gl-item"><span class="gl-dot completed"></span>Completed</span>
|
| 148 |
<span class="gl-item"><span class="gl-dot failed"></span>Failed</span>
|
| 149 |
+
<span class="gl-item"><span class="gl-dot at-risk"></span>At Risk</span>
|
| 150 |
<span class="gl-item"><span class="gl-line dep"></span>Depends on</span>
|
| 151 |
<span class="gl-item"><span class="gl-line conflict"></span>Conflicts</span>
|
| 152 |
</div>
|
|
|
|
| 157 |
|
| 158 |
<!-- Trust Network -->
|
| 159 |
<div class="mc" id="mc-trust">
|
| 160 |
+
<div class="mc-hd">
|
| 161 |
<span>Trust Network</span>
|
| 162 |
+
<span class="mc-badge blue" id="trust-avg-badge">avg —</span>
|
| 163 |
</div>
|
| 164 |
<div id="trust-list"></div>
|
| 165 |
</div>
|
| 166 |
|
| 167 |
<!-- Schedule Capacity -->
|
| 168 |
<div class="mc" id="mc-capacity">
|
| 169 |
+
<div class="mc-hd">Schedule Capacity</div>
|
| 170 |
+
<div id="capacity-display"></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
</div>
|
| 172 |
|
| 173 |
<!-- Last Decision Score -->
|
| 174 |
<div class="mc" id="mc-reward">
|
| 175 |
+
<div class="mc-hd">Last Decision Score</div>
|
| 176 |
<div id="reward-display">
|
| 177 |
<div class="rwd-empty">Take an action to see reward breakdown</div>
|
| 178 |
</div>
|
|
|
|
| 180 |
|
| 181 |
<!-- Node Detail -->
|
| 182 |
<div class="mc" id="mc-target">
|
| 183 |
+
<div class="mc-hd">Selected Commitment</div>
|
| 184 |
<div id="target-detail">
|
| 185 |
<div class="td-empty">Click a graph node or select from the dropdown</div>
|
| 186 |
</div>
|
|
|
|
| 188 |
|
| 189 |
<!-- Event Log -->
|
| 190 |
<div class="mc mc-log" id="mc-log">
|
| 191 |
+
<div class="mc-hd">Event Log</div>
|
| 192 |
<div id="log-list"></div>
|
| 193 |
</div>
|
| 194 |
|
|
|
|
| 207 |
|
| 208 |
<div class="cmp-topbar">
|
| 209 |
<div class="cmp-scenario-info" id="cmp-scenario-info">
|
| 210 |
+
<span class="cmp-icon" id="cmp-scenario-icon">⚡</span>
|
| 211 |
<div>
|
| 212 |
<div class="cmp-scenario-name" id="cmp-scenario-name">Select a scenario</div>
|
| 213 |
<div class="cmp-scenario-desc" id="cmp-scenario-desc">Loading…</div>
|
|
|
|
| 239 |
|
| 240 |
<!-- LEFT: Naive agent -->
|
| 241 |
<div class="cmp-side naive-side">
|
| 242 |
+
<div class="cmp-side-hd naive-hd">
|
| 243 |
<span class="csh-badge">❌ Naive Agent</span>
|
| 244 |
+
<span class="csh-sub">Accepts everything — cascade inevitable</span>
|
| 245 |
</div>
|
| 246 |
<svg id="cmp-svg-naive" class="cmp-svg"></svg>
|
| 247 |
<div class="cmp-side-stats" id="naive-stats"></div>
|
| 248 |
+
<div class="cmp-step-display" id="naive-step-display"></div>
|
| 249 |
</div>
|
| 250 |
|
| 251 |
<!-- CENTER: Delta column -->
|
| 252 |
<div class="cmp-center">
|
| 253 |
<div class="cmp-delta-title">IMPROVEMENT</div>
|
| 254 |
<div class="delta-row" id="d-reward">
|
| 255 |
+
<div class="dr-lbl">Reward Δ</div>
|
| 256 |
+
<div class="dr-v" id="dv-reward">—</div>
|
| 257 |
</div>
|
| 258 |
<div class="delta-row" id="d-sat">
|
| 259 |
+
<div class="dr-lbl">Health Δ</div>
|
| 260 |
+
<div class="dr-v" id="dv-sat">—</div>
|
| 261 |
</div>
|
| 262 |
<div class="delta-row" id="d-fail">
|
| 263 |
+
<div class="dr-lbl">Failures Avoided</div>
|
| 264 |
+
<div class="dr-v" id="dv-fail">—</div>
|
| 265 |
</div>
|
| 266 |
<div class="delta-row" id="d-trust">
|
| 267 |
+
<div class="dr-lbl">Trust Δ</div>
|
| 268 |
+
<div class="dr-v" id="dv-trust">—</div>
|
| 269 |
</div>
|
| 270 |
<div class="cmp-verdict" id="cmp-verdict"></div>
|
| 271 |
</div>
|
| 272 |
|
| 273 |
<!-- RIGHT: VERGIL agent -->
|
| 274 |
<div class="cmp-side vergil-side">
|
| 275 |
+
<div class="cmp-side-hd vergil-hd">
|
| 276 |
<span class="csh-badge">✅ VERGIL Agent</span>
|
| 277 |
+
<span class="csh-sub">Reasons through CDG before deciding</span>
|
| 278 |
</div>
|
| 279 |
<svg id="cmp-svg-vergil" class="cmp-svg"></svg>
|
| 280 |
<div class="cmp-side-stats" id="vergil-stats"></div>
|
| 281 |
+
<div class="cmp-step-display cmp-think-display" id="vergil-step-display"></div>
|
| 282 |
</div>
|
| 283 |
|
| 284 |
</div>
|
|
@@ -1,801 +1,773 @@
|
|
| 1 |
/* ═══════════════════════════════════════════════════════════
|
| 2 |
-
VERGIL — Design System
|
| 3 |
═══════════════════════════════════════════════════════════ */
|
| 4 |
|
| 5 |
-
/* ── Reset & Tokens ──────────────────────────────────────── */
|
| 6 |
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
| 7 |
|
| 8 |
:root {
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
}
|
| 43 |
|
| 44 |
html, body {
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
color: var(--text-1);
|
| 50 |
-
overflow: hidden;
|
| 51 |
-
-webkit-font-smoothing: antialiased;
|
| 52 |
}
|
| 53 |
.hidden { display: none !important; }
|
| 54 |
|
| 55 |
-
/* ══════════════════════════════════════════════
|
| 56 |
TOP BAR
|
| 57 |
-
══════════════════════════════════════════════
|
| 58 |
#topbar {
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
}
|
| 67 |
|
| 68 |
-
.
|
| 69 |
-
|
| 70 |
-
.brand { display: flex; align-items: center; gap: 7px; }
|
| 71 |
.brand-glyph {
|
| 72 |
-
|
| 73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
}
|
| 75 |
.brand-name {
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
|
| 79 |
}
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
color: var(--cyan); border: 1px solid hsla(200,70%,50%,0.25);
|
| 86 |
-
letter-spacing: 0.5px;
|
| 87 |
}
|
| 88 |
|
| 89 |
-
.topbar-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
|
|
|
| 97 |
}
|
| 98 |
-
.
|
| 99 |
-
|
| 100 |
-
|
| 101 |
}
|
| 102 |
-
.
|
| 103 |
-
|
| 104 |
-
color: var(--text-1);
|
| 105 |
}
|
| 106 |
|
| 107 |
.topbar-right { display: flex; align-items: center; gap: 8px; }
|
| 108 |
|
| 109 |
.top-select {
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
}
|
| 116 |
.top-select:focus { border-color: var(--border-hi); }
|
| 117 |
|
| 118 |
.btn-primary {
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
transition: background 180ms, transform 120ms;
|
| 124 |
}
|
| 125 |
-
.btn-primary:hover { background: #
|
| 126 |
-
.btn-primary:active { transform: translateY(0); }
|
| 127 |
|
| 128 |
.btn-ghost {
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
}
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 140 |
#theater {
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
|
| 144 |
-
|
| 145 |
-
|
| 146 |
-
|
| 147 |
-
|
| 148 |
}
|
| 149 |
|
| 150 |
-
/* ──
|
| 151 |
#conv-panel {
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
}
|
| 157 |
|
| 158 |
#scenario-header {
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
background: hsla(220,30%,10%,0.6);
|
| 164 |
}
|
| 165 |
-
.sh-
|
| 166 |
-
|
| 167 |
-
|
|
|
|
|
|
|
|
|
|
| 168 |
|
| 169 |
#message-feed {
|
| 170 |
-
|
| 171 |
-
|
| 172 |
}
|
| 173 |
-
#message-feed::-webkit-scrollbar { width:
|
| 174 |
#message-feed::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
|
| 175 |
|
| 176 |
.feed-empty {
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
}
|
| 181 |
-
.fe-icon { font-size:
|
|
|
|
| 182 |
|
| 183 |
-
/*
|
| 184 |
-
.msg {
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
animation: msgIn 0.25s ease both;
|
| 188 |
-
}
|
| 189 |
-
@keyframes msgIn {
|
| 190 |
-
from { opacity: 0; transform: translateY(8px); }
|
| 191 |
-
to { opacity: 1; transform: translateY(0); }
|
| 192 |
-
}
|
| 193 |
|
| 194 |
-
.msg-system {
|
| 195 |
-
|
| 196 |
-
color: var(--text-3); font-size: 11px; text-align: center;
|
| 197 |
-
padding: 5px 8px;
|
| 198 |
-
}
|
| 199 |
|
| 200 |
.msg-stakeholder {
|
| 201 |
-
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
}
|
| 205 |
-
.msg-stakeholder .msg-from {
|
| 206 |
-
font-size: 10px; font-weight: 700; text-transform: uppercase;
|
| 207 |
-
letter-spacing: 0.8px; color: var(--cyan); margin-bottom: 4px;
|
| 208 |
}
|
| 209 |
-
.msg-
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
font-family: var(--mono);
|
| 213 |
}
|
|
|
|
|
|
|
| 214 |
|
| 215 |
.msg-think {
|
| 216 |
-
|
| 217 |
-
|
| 218 |
-
|
| 219 |
-
font-family: var(--mono); font-size: 10.5px;
|
| 220 |
-
color: #c084fc;
|
| 221 |
}
|
| 222 |
.think-header {
|
| 223 |
-
|
| 224 |
-
|
| 225 |
-
|
| 226 |
-
|
| 227 |
}
|
| 228 |
.think-body {
|
| 229 |
-
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
line-height: 1.6;
|
| 233 |
}
|
| 234 |
-
.think-step {
|
| 235 |
-
margin-bottom: 4px;
|
| 236 |
-
}
|
| 237 |
-
.think-step-label { color: #a855f7; font-weight: 600; }
|
| 238 |
|
| 239 |
.msg-decision {
|
| 240 |
-
|
| 241 |
-
|
| 242 |
-
|
| 243 |
-
}
|
| 244 |
-
.msg-decision.negative {
|
| 245 |
-
background: hsla(0,60%,14%,0.5);
|
| 246 |
-
border-left-color: var(--red);
|
| 247 |
}
|
| 248 |
-
.
|
| 249 |
-
|
| 250 |
-
|
| 251 |
-
.msg-decision.negative .md-action { color: var(--red); }
|
| 252 |
-
.md-target { font-size: 11px; color: var(--text-2); }
|
| 253 |
-
.md-reward {
|
| 254 |
-
font-family: var(--mono); font-size: 11px;
|
| 255 |
-
margin-top: 5px; padding-top: 5px;
|
| 256 |
-
border-top: 1px solid hsla(142,40%,30%,0.3);
|
| 257 |
-
color: var(--text-3);
|
| 258 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 259 |
|
| 260 |
.msg-alert {
|
| 261 |
-
|
| 262 |
-
|
| 263 |
-
|
| 264 |
-
|
| 265 |
}
|
| 266 |
-
|
| 267 |
.msg-cascade {
|
| 268 |
-
|
| 269 |
-
|
| 270 |
-
|
| 271 |
-
|
| 272 |
-
}
|
| 273 |
-
@keyframes cascadeFlash {
|
| 274 |
-
0% { background: hsla(0,70%,20%,0.9); }
|
| 275 |
-
100% { background: hsla(0,70%,10%,0.8); }
|
| 276 |
}
|
|
|
|
| 277 |
|
| 278 |
/* Conv footer */
|
| 279 |
#conv-footer {
|
| 280 |
-
|
| 281 |
-
|
| 282 |
-
|
| 283 |
-
|
| 284 |
-
|
|
|
|
|
|
|
|
|
|
| 285 |
}
|
| 286 |
-
.cf-label { font-size: 10px; font-weight: 700; text-transform: uppercase;
|
| 287 |
-
letter-spacing: 1px; color: var(--text-3); }
|
| 288 |
-
|
| 289 |
.node-select {
|
| 290 |
-
|
| 291 |
-
|
| 292 |
-
|
| 293 |
-
|
| 294 |
-
outline: none; cursor: pointer;
|
| 295 |
}
|
| 296 |
.node-select:focus { border-color: var(--border-hi); }
|
| 297 |
|
| 298 |
#manual-actions {
|
| 299 |
-
|
| 300 |
}
|
| 301 |
.ma-btn {
|
| 302 |
-
|
| 303 |
-
|
| 304 |
-
|
| 305 |
-
|
| 306 |
-
|
| 307 |
-
}
|
| 308 |
-
.ma-btn:hover { background: var(--bg-
|
| 309 |
-
.ma-btn.accept:hover
|
| 310 |
-
.ma-btn.decline:hover { border-color: var(--
|
| 311 |
-
.ma-btn.counter:hover { border-color: var(--
|
| 312 |
-
.ma-btn.wait:hover
|
| 313 |
-
.ma-btn:disabled
|
| 314 |
|
| 315 |
.autoplay-btn {
|
| 316 |
-
|
| 317 |
-
|
| 318 |
-
|
| 319 |
-
|
| 320 |
}
|
| 321 |
.autoplay-btn:hover { opacity: 0.9; transform: translateY(-1px); }
|
| 322 |
-
.autoplay-btn.playing {
|
| 323 |
-
background: linear-gradient(135deg, var(--orange), var(--red));
|
| 324 |
-
}
|
| 325 |
|
| 326 |
-
/* ──
|
| 327 |
#graph-panel {
|
| 328 |
-
|
| 329 |
-
|
| 330 |
-
background: var(--bg);
|
| 331 |
}
|
| 332 |
|
| 333 |
#graph-header-bar {
|
| 334 |
-
|
| 335 |
-
|
| 336 |
-
|
| 337 |
-
|
| 338 |
-
flex-shrink: 0;
|
| 339 |
}
|
| 340 |
.ghb-title {
|
| 341 |
-
|
| 342 |
-
|
| 343 |
}
|
| 344 |
-
.ghb-
|
| 345 |
-
.ghb-
|
| 346 |
-
|
|
|
|
|
|
|
| 347 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 348 |
|
| 349 |
#graph-area { flex: 1; position: relative; overflow: hidden; }
|
| 350 |
#graph-svg { width: 100%; height: 100%; display: block; }
|
| 351 |
|
| 352 |
#graph-empty {
|
| 353 |
-
|
| 354 |
-
|
| 355 |
-
|
| 356 |
-
|
| 357 |
}
|
| 358 |
.ge-glyph {
|
| 359 |
-
|
| 360 |
-
|
|
|
|
| 361 |
}
|
| 362 |
-
.ge-title { font-size:
|
| 363 |
-
.ge-sub { font-size: 13px; color: var(--
|
| 364 |
.ge-btn {
|
| 365 |
-
|
| 366 |
-
|
| 367 |
-
|
| 368 |
-
|
| 369 |
-
|
| 370 |
-
|
|
|
|
| 371 |
}
|
| 372 |
-
.ge-btn:hover { transform: translateY(-2px); box-shadow: 0
|
| 373 |
|
| 374 |
#graph-legend {
|
| 375 |
-
|
| 376 |
-
|
| 377 |
-
|
| 378 |
-
|
| 379 |
-
|
| 380 |
-
}
|
| 381 |
-
.gl-
|
| 382 |
-
.gl-dot
|
| 383 |
-
.gl-dot.
|
| 384 |
-
.gl-dot.
|
| 385 |
-
.gl-dot.
|
| 386 |
-
.gl-dot.
|
| 387 |
-
.gl-line { width:
|
| 388 |
-
.gl-line.dep { background: var(--
|
| 389 |
-
.gl-line.conflict { background: var(--
|
| 390 |
-
|
| 391 |
-
/*
|
| 392 |
-
.node
|
| 393 |
-
|
| 394 |
-
|
| 395 |
-
}
|
| 396 |
-
.node
|
| 397 |
-
|
| 398 |
-
|
| 399 |
-
|
| 400 |
-
|
| 401 |
-
|
| 402 |
-
|
| 403 |
-
|
| 404 |
-
|
| 405 |
-
|
| 406 |
-
|
| 407 |
-
|
| 408 |
-
|
| 409 |
-
}
|
| 410 |
-
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
|
| 418 |
-
|
| 419 |
-
.node.
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
| 423 |
-
|
| 424 |
-
.node.
|
| 425 |
-
|
| 426 |
-
|
| 427 |
-
|
| 428 |
-
|
| 429 |
-
}
|
| 430 |
-
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
|
| 434 |
-
|
| 435 |
-
|
| 436 |
-
|
| 437 |
-
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
| 441 |
-
|
| 442 |
-
|
| 443 |
-
|
| 444 |
-
|
| 445 |
-
|
| 446 |
-
|
| 447 |
-
|
| 448 |
-
|
| 449 |
-
|
| 450 |
-
|
| 451 |
-
|
| 452 |
-
|
| 453 |
-
}
|
| 454 |
-
|
| 455 |
-
|
|
|
|
|
|
|
|
|
|
| 456 |
#metrics-panel {
|
| 457 |
-
|
| 458 |
-
|
| 459 |
-
|
| 460 |
-
border-left: 1px solid var(--border);
|
| 461 |
-
background: hsla(220,25%,7%,0.8);
|
| 462 |
}
|
| 463 |
-
#metrics-panel::-webkit-scrollbar { width:
|
| 464 |
#metrics-panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
|
| 465 |
|
| 466 |
.mc {
|
| 467 |
-
|
| 468 |
-
|
| 469 |
-
border-radius: var(--r);
|
| 470 |
-
overflow: hidden;
|
| 471 |
}
|
|
|
|
| 472 |
|
| 473 |
-
.mc-
|
| 474 |
-
|
| 475 |
-
|
| 476 |
-
|
| 477 |
-
|
| 478 |
-
|
|
|
|
| 479 |
}
|
| 480 |
-
.mc-
|
| 481 |
-
|
| 482 |
-
|
| 483 |
-
background: hsla(142,50%,20%,0.3); color: var(--green);
|
| 484 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 485 |
|
| 486 |
/* Trust */
|
| 487 |
-
#trust-list { padding:
|
| 488 |
-
|
| 489 |
-
.
|
| 490 |
-
.te-
|
| 491 |
-
.te-
|
| 492 |
-
.te-score {
|
| 493 |
-
|
| 494 |
-
|
| 495 |
-
.te-score.
|
| 496 |
-
.te-score.
|
| 497 |
-
|
| 498 |
-
|
| 499 |
-
|
| 500 |
-
|
| 501 |
-
.te-
|
| 502 |
-
|
| 503 |
-
|
| 504 |
-
|
| 505 |
-
.te-
|
| 506 |
-
|
| 507 |
-
|
| 508 |
-
}
|
| 509 |
-
.te-
|
| 510 |
-
|
| 511 |
-
|
| 512 |
-
|
|
|
|
|
|
|
|
|
|
| 513 |
|
| 514 |
.te-dims {
|
| 515 |
-
|
| 516 |
}
|
| 517 |
-
.te-dim {
|
| 518 |
-
|
| 519 |
-
font-family: var(--mono);
|
| 520 |
-
}
|
| 521 |
-
.te-dim span { color: var(--text-2); }
|
| 522 |
|
| 523 |
/* Capacity */
|
| 524 |
-
#capacity-display { padding:
|
| 525 |
-
.cap-
|
| 526 |
-
|
| 527 |
-
|
| 528 |
-
}
|
| 529 |
-
.cap-
|
| 530 |
-
.cap-
|
| 531 |
-
|
| 532 |
-
|
| 533 |
-
|
| 534 |
-
.cap-
|
| 535 |
-
|
| 536 |
-
|
| 537 |
-
|
| 538 |
-
|
| 539 |
-
|
| 540 |
-
|
| 541 |
-
|
| 542 |
-
}
|
| 543 |
-
.cap-
|
| 544 |
-
.cap-bar-fill.crit { background: linear-gradient(90deg, var(--orange), var(--red)); animation: capFlash 0.8s ease infinite; }
|
| 545 |
-
@keyframes capFlash {
|
| 546 |
-
0%,100% { opacity: 1; } 50% { opacity: 0.7; }
|
| 547 |
-
}
|
| 548 |
-
|
| 549 |
-
.cap-legend {
|
| 550 |
-
display: flex; gap: 10px;
|
| 551 |
-
font-size: 9.5px; color: var(--text-3);
|
| 552 |
-
}
|
| 553 |
-
.cap-ok { color: var(--green); }
|
| 554 |
-
.cap-warn { color: var(--yellow); }
|
| 555 |
-
.cap-crit { color: var(--red); }
|
| 556 |
|
| 557 |
/* Reward breakdown */
|
| 558 |
-
#reward-display { padding:
|
| 559 |
-
.rwd-empty { font-size: 11px; color: var(--
|
| 560 |
.rwd-total {
|
| 561 |
-
|
| 562 |
-
|
| 563 |
-
|
| 564 |
}
|
| 565 |
-
.rwd-total.pos { color: var(--
|
| 566 |
-
.rwd-total.neg { color: var(--
|
| 567 |
-
|
| 568 |
.rwd-row {
|
| 569 |
-
|
| 570 |
-
|
|
|
|
| 571 |
}
|
| 572 |
.rwd-row:last-child { border: none; }
|
| 573 |
-
.rwd-
|
| 574 |
-
.rwd-
|
| 575 |
-
.rwd-
|
| 576 |
-
.rwd-
|
| 577 |
-
.rwd-
|
| 578 |
|
| 579 |
/* Target detail */
|
| 580 |
-
#target-detail { padding: 10px
|
| 581 |
-
.td-empty
|
| 582 |
-
.td-name
|
| 583 |
-
.td-row
|
| 584 |
-
|
| 585 |
.td-row:last-child { border: none; }
|
| 586 |
-
.td-k
|
| 587 |
-
.td-v
|
| 588 |
-
.td-
|
| 589 |
-
|
| 590 |
-
|
| 591 |
}
|
| 592 |
-
.td-
|
| 593 |
-
.td-
|
| 594 |
-
.td-
|
| 595 |
-
.td-
|
| 596 |
|
| 597 |
/* Log */
|
| 598 |
-
|
| 599 |
-
#log-list { padding: 6px 10px; display: flex; flex-direction: column; gap: 4px;
|
| 600 |
-
max-height: 160px; overflow-y: auto; }
|
| 601 |
#log-list::-webkit-scrollbar { width: 3px; }
|
| 602 |
-
#log-list::-webkit-scrollbar-thumb { background: var(--border); }
|
| 603 |
-
|
| 604 |
-
|
| 605 |
-
|
| 606 |
-
|
| 607 |
-
|
| 608 |
-
}
|
| 609 |
-
|
| 610 |
-
.log-item.
|
| 611 |
-
|
| 612 |
-
|
| 613 |
-
.log-item.danger { color: var(--red); border-left-color: var(--red); }
|
| 614 |
-
.log-item.response{ color: var(--text-2); border-left-color: var(--purple); font-style: italic; }
|
| 615 |
-
|
| 616 |
-
/* ══════════════════════════════════════════════════════════
|
| 617 |
DECISION TIMELINE
|
| 618 |
-
══════════════════════════════════════════════
|
| 619 |
#timeline-bar {
|
| 620 |
-
|
| 621 |
-
|
| 622 |
-
|
| 623 |
-
|
| 624 |
-
|
| 625 |
-
border-top: 1px solid var(--border);
|
| 626 |
-
overflow-x: auto; overflow-y: hidden;
|
| 627 |
-
z-index: 100;
|
| 628 |
}
|
| 629 |
#timeline-bar::-webkit-scrollbar { height: 3px; }
|
| 630 |
#timeline-bar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
|
| 631 |
-
|
| 632 |
-
.
|
| 633 |
-
font-size: 9px; font-weight: 700; text-transform: uppercase;
|
| 634 |
-
letter-spacing: 1.2px; color: var(--text-3); flex-shrink: 0;
|
| 635 |
-
writing-mode: horizontal-tb;
|
| 636 |
-
}
|
| 637 |
-
|
| 638 |
#timeline-track { display: flex; align-items: center; gap: 4px; height: 100%; }
|
| 639 |
-
|
| 640 |
.tl-step {
|
| 641 |
-
|
| 642 |
-
|
| 643 |
-
|
| 644 |
-
|
| 645 |
-
|
| 646 |
-
|
| 647 |
-
|
| 648 |
-
|
| 649 |
-
}
|
| 650 |
-
|
| 651 |
-
.tl-step
|
| 652 |
-
|
| 653 |
-
.tl-
|
| 654 |
-
.tl-
|
| 655 |
-
.tl-
|
| 656 |
-
.tl-
|
| 657 |
-
|
| 658 |
-
|
| 659 |
-
|
| 660 |
-
.tl-reward {
|
| 661 |
-
font-family: var(--mono); font-size: 9px; font-weight: 700;
|
| 662 |
-
}
|
| 663 |
-
.tl-reward.pos { color: var(--green); }
|
| 664 |
-
.tl-reward.neg { color: var(--red); }
|
| 665 |
-
|
| 666 |
-
.tl-connector {
|
| 667 |
-
width: 16px; height: 1px;
|
| 668 |
-
background: var(--border); flex-shrink: 0; opacity: 0.5;
|
| 669 |
-
}
|
| 670 |
-
|
| 671 |
-
/* ══════════════════════════════════════════════════════════
|
| 672 |
COMPARE OVERLAY
|
| 673 |
-
══════════════════════════════════════════════
|
| 674 |
#compare-overlay {
|
| 675 |
-
|
| 676 |
-
|
| 677 |
-
|
| 678 |
-
|
| 679 |
}
|
| 680 |
-
@keyframes
|
| 681 |
|
| 682 |
.cmp-topbar {
|
| 683 |
-
|
| 684 |
-
|
| 685 |
-
|
| 686 |
-
|
| 687 |
-
flex-shrink: 0;
|
| 688 |
}
|
| 689 |
.cmp-scenario-info { display: flex; align-items: center; gap: 12px; }
|
| 690 |
-
.cmp-
|
| 691 |
-
.cmp-scenario-name { font-size:
|
| 692 |
-
.cmp-scenario-desc { font-size: 11px; color: var(--
|
| 693 |
-
|
| 694 |
.cmp-controls { display: flex; align-items: center; gap: 8px; }
|
| 695 |
-
.cmp-step-
|
| 696 |
-
|
| 697 |
-
}
|
| 698 |
-
.cmp-step-label { font-family: var(--mono); font-size: 12px; color: var(--text-2); min-width: 80px; text-align: center; }
|
| 699 |
-
.cmp-auto-btn.playing { background: hsla(0,60%,20%,0.5); color: var(--red); border-color: var(--red); }
|
| 700 |
.btn-close-cmp {
|
| 701 |
-
|
| 702 |
-
|
| 703 |
-
|
| 704 |
}
|
| 705 |
-
.btn-close-cmp:hover { background:
|
| 706 |
|
| 707 |
.cmp-loading {
|
| 708 |
-
|
| 709 |
-
|
| 710 |
-
color: var(--text-3);
|
| 711 |
}
|
| 712 |
.cmp-spinner {
|
| 713 |
-
|
| 714 |
-
|
| 715 |
-
|
| 716 |
-
animation: spin 0.8s linear infinite;
|
| 717 |
}
|
| 718 |
-
@keyframes spin { to
|
| 719 |
|
| 720 |
.cmp-body {
|
| 721 |
-
|
| 722 |
-
grid-template-columns: 1fr 140px 1fr;
|
| 723 |
-
overflow: hidden;
|
| 724 |
}
|
| 725 |
-
|
| 726 |
.cmp-side { display: flex; flex-direction: column; overflow: hidden; }
|
| 727 |
-
|
| 728 |
-
|
| 729 |
-
|
| 730 |
-
|
| 731 |
-
|
| 732 |
-
|
| 733 |
-
}
|
| 734 |
-
.
|
| 735 |
-
.
|
| 736 |
-
.csh-badge {
|
| 737 |
-
|
| 738 |
-
}
|
| 739 |
-
.naive-header .csh-badge { color: var(--red); }
|
| 740 |
-
.vergil-header .csh-badge { color: var(--green); }
|
| 741 |
-
.csh-desc { font-size: 11px; color: var(--text-3); }
|
| 742 |
|
| 743 |
.cmp-svg { flex: 1; display: block; }
|
| 744 |
|
| 745 |
.cmp-side-stats {
|
| 746 |
-
|
| 747 |
-
|
| 748 |
-
|
| 749 |
-
font-family: var(--mono); font-size: 11px;
|
| 750 |
}
|
| 751 |
.css-stat { display: flex; flex-direction: column; gap: 1px; }
|
| 752 |
-
.css-
|
| 753 |
-
.css-
|
| 754 |
|
| 755 |
-
.cmp-
|
| 756 |
-
|
| 757 |
-
|
| 758 |
-
|
| 759 |
-
min-height: 60px; max-height: 80px; overflow-y: auto;
|
| 760 |
-
flex-shrink: 0;
|
| 761 |
-
background: hsla(220,30%,8%,0.6);
|
| 762 |
}
|
| 763 |
-
.cmp-think-
|
| 764 |
-
|
| 765 |
-
|
| 766 |
}
|
| 767 |
|
| 768 |
-
/* Compare center column */
|
| 769 |
.cmp-center {
|
| 770 |
-
|
| 771 |
-
|
| 772 |
-
|
| 773 |
-
|
| 774 |
-
|
| 775 |
-
|
| 776 |
}
|
| 777 |
.cmp-delta-title {
|
| 778 |
-
|
| 779 |
-
|
| 780 |
}
|
| 781 |
.delta-row {
|
| 782 |
-
|
| 783 |
-
|
| 784 |
-
background: var(--bg-card);
|
| 785 |
-
border: 1px solid var(--border); border-radius: var(--r);
|
| 786 |
-
}
|
| 787 |
-
.dr-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-3); margin-bottom: 4px; }
|
| 788 |
-
.dr-val {
|
| 789 |
-
font-family: var(--mono); font-size: 16px; font-weight: 800;
|
| 790 |
-
color: var(--text-2);
|
| 791 |
}
|
| 792 |
-
.dr-
|
| 793 |
-
.dr-
|
|
|
|
|
|
|
| 794 |
|
| 795 |
.cmp-verdict {
|
| 796 |
-
|
| 797 |
-
|
| 798 |
-
|
| 799 |
-
|
| 800 |
-
font-size: 12px; font-weight: 600; color: var(--green); line-height: 1.5;
|
| 801 |
}
|
|
|
|
| 1 |
/* ═══════════════════════════════════════════════════════════
|
| 2 |
+
VERGIL — Design System v5 (Senior UX Rebuild)
|
| 3 |
═══════════════════════════════════════════════════════════ */
|
| 4 |
|
|
|
|
| 5 |
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
| 6 |
|
| 7 |
:root {
|
| 8 |
+
/* Slate-based dark — readable contrast, not pure black */
|
| 9 |
+
--bg: #0f172a;
|
| 10 |
+
--bg-panel: #1e293b;
|
| 11 |
+
--bg-card: #1e293b;
|
| 12 |
+
--bg-card-hi:#253047;
|
| 13 |
+
--bg-topbar: rgba(15,23,42,0.96);
|
| 14 |
+
--bg-input: #131f35;
|
| 15 |
+
--border: #2d3f58;
|
| 16 |
+
--border-hi: #4c6078;
|
| 17 |
+
|
| 18 |
+
/* Text */
|
| 19 |
+
--t1: #f1f5f9;
|
| 20 |
+
--t2: #94a3b8;
|
| 21 |
+
--t3: #64748b;
|
| 22 |
+
--t4: #475569;
|
| 23 |
+
|
| 24 |
+
/* Status — semantic, not alarming */
|
| 25 |
+
--s-pending: #818cf8; /* indigo */
|
| 26 |
+
--s-accepted: #38bdf8; /* sky */
|
| 27 |
+
--s-completed: #34d399; /* emerald */
|
| 28 |
+
--s-failed: #fb7185; /* rose */
|
| 29 |
+
--s-at-risk: #fbbf24; /* amber */
|
| 30 |
+
|
| 31 |
+
/* KPI accent strip */
|
| 32 |
+
--kpi-fulfill: #34d399;
|
| 33 |
+
--kpi-trust: #60a5fa;
|
| 34 |
+
--kpi-cascade: #fb7185;
|
| 35 |
+
--kpi-health: #a78bfa;
|
| 36 |
+
|
| 37 |
+
/* Brand */
|
| 38 |
+
--brand: #6366f1;
|
| 39 |
+
--brand2: #8b5cf6;
|
| 40 |
+
|
| 41 |
+
--r: 10px;
|
| 42 |
+
--r-sm: 6px;
|
| 43 |
+
--r-lg: 16px;
|
| 44 |
+
|
| 45 |
+
--font: 'Inter', -apple-system, system-ui, sans-serif;
|
| 46 |
+
--mono: 'JetBrains Mono', 'SF Mono', monospace;
|
| 47 |
+
|
| 48 |
+
--topbar-h: 52px;
|
| 49 |
+
--kpi-h: 72px;
|
| 50 |
+
--timeline-h:60px;
|
| 51 |
+
--conv-w: 272px;
|
| 52 |
+
--metrics-w: 256px;
|
| 53 |
}
|
| 54 |
|
| 55 |
html, body {
|
| 56 |
+
height: 100%; overflow: hidden;
|
| 57 |
+
font-family: var(--font); font-size: 13px;
|
| 58 |
+
background: var(--bg); color: var(--t1);
|
| 59 |
+
-webkit-font-smoothing: antialiased;
|
|
|
|
|
|
|
|
|
|
| 60 |
}
|
| 61 |
.hidden { display: none !important; }
|
| 62 |
|
| 63 |
+
/* ══════════════════════════════════════════════
|
| 64 |
TOP BAR
|
| 65 |
+
══════════════════════════════════════════════ */
|
| 66 |
#topbar {
|
| 67 |
+
position: fixed; top: 0; left: 0; right: 0; z-index: 200;
|
| 68 |
+
height: var(--topbar-h);
|
| 69 |
+
display: flex; align-items: center; justify-content: space-between;
|
| 70 |
+
padding: 0 20px;
|
| 71 |
+
background: var(--bg-topbar);
|
| 72 |
+
border-bottom: 1px solid var(--border);
|
| 73 |
+
backdrop-filter: blur(20px);
|
| 74 |
}
|
| 75 |
|
| 76 |
+
.brand { display: flex; align-items: center; gap: 8px; }
|
|
|
|
|
|
|
| 77 |
.brand-glyph {
|
| 78 |
+
width: 30px; height: 30px;
|
| 79 |
+
display: flex; align-items: center; justify-content: center;
|
| 80 |
+
background: linear-gradient(135deg, var(--brand), var(--brand2));
|
| 81 |
+
border-radius: 8px;
|
| 82 |
+
font-size: 17px; font-weight: 900; color: #fff;
|
| 83 |
+
box-shadow: 0 0 16px rgba(99,102,241,0.35);
|
| 84 |
}
|
| 85 |
.brand-name {
|
| 86 |
+
font-size: 17px; font-weight: 800; letter-spacing: 2.5px;
|
| 87 |
+
color: var(--t1);
|
|
|
|
| 88 |
}
|
| 89 |
+
.brand-version {
|
| 90 |
+
font-size: 10px; font-weight: 600; letter-spacing: 1px;
|
| 91 |
+
padding: 2px 8px; border-radius: 50px;
|
| 92 |
+
background: rgba(99,102,241,0.15); color: var(--brand);
|
| 93 |
+
border: 1px solid rgba(99,102,241,0.3);
|
|
|
|
|
|
|
| 94 |
}
|
| 95 |
|
| 96 |
+
.topbar-center {
|
| 97 |
+
display: flex; align-items: center; gap: 6px;
|
| 98 |
+
}
|
| 99 |
+
.stat-chip {
|
| 100 |
+
display: flex; align-items: center; gap: 7px;
|
| 101 |
+
padding: 5px 14px;
|
| 102 |
+
background: var(--bg-panel);
|
| 103 |
+
border: 1px solid var(--border);
|
| 104 |
+
border-radius: 50px;
|
| 105 |
}
|
| 106 |
+
.sc-label {
|
| 107 |
+
font-size: 9px; font-weight: 700; text-transform: uppercase;
|
| 108 |
+
letter-spacing: 1.2px; color: var(--t3);
|
| 109 |
}
|
| 110 |
+
.sc-val {
|
| 111 |
+
font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--t1);
|
|
|
|
| 112 |
}
|
| 113 |
|
| 114 |
.topbar-right { display: flex; align-items: center; gap: 8px; }
|
| 115 |
|
| 116 |
.top-select {
|
| 117 |
+
font-family: var(--font); font-size: 12px;
|
| 118 |
+
padding: 6px 10px;
|
| 119 |
+
background: var(--bg-input); color: var(--t2);
|
| 120 |
+
border: 1px solid var(--border); border-radius: var(--r-sm);
|
| 121 |
+
outline: none; cursor: pointer; max-width: 160px;
|
| 122 |
}
|
| 123 |
.top-select:focus { border-color: var(--border-hi); }
|
| 124 |
|
| 125 |
.btn-primary {
|
| 126 |
+
font-size: 12px; font-weight: 600; padding: 7px 18px;
|
| 127 |
+
background: var(--brand); color: #fff;
|
| 128 |
+
border: none; border-radius: var(--r-sm); cursor: pointer;
|
| 129 |
+
transition: all 160ms;
|
|
|
|
| 130 |
}
|
| 131 |
+
.btn-primary:hover { background: #4f46e5; transform: translateY(-1px); }
|
|
|
|
| 132 |
|
| 133 |
.btn-ghost {
|
| 134 |
+
font-size: 12px; font-weight: 500; padding: 7px 14px;
|
| 135 |
+
background: transparent; color: var(--t2);
|
| 136 |
+
border: 1px solid var(--border); border-radius: var(--r-sm); cursor: pointer;
|
| 137 |
+
transition: all 160ms;
|
| 138 |
+
}
|
| 139 |
+
.btn-ghost:hover { border-color: var(--border-hi); color: var(--t1); }
|
| 140 |
+
|
| 141 |
+
/* ══════════════════════════════════════════════
|
| 142 |
+
KPI STRIP
|
| 143 |
+
══════════════════════════════════════════════ */
|
| 144 |
+
#kpi-strip {
|
| 145 |
+
position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 190;
|
| 146 |
+
height: var(--kpi-h);
|
| 147 |
+
display: grid; grid-template-columns: repeat(4, 1fr);
|
| 148 |
+
border-bottom: 1px solid var(--border);
|
| 149 |
+
background: var(--bg-panel);
|
| 150 |
+
}
|
| 151 |
+
|
| 152 |
+
.kpi-card {
|
| 153 |
+
display: flex; flex-direction: column; justify-content: center;
|
| 154 |
+
padding: 10px 20px;
|
| 155 |
+
border-right: 1px solid var(--border);
|
| 156 |
+
position: relative; overflow: hidden;
|
| 157 |
+
}
|
| 158 |
+
.kpi-card:last-child { border-right: none; }
|
| 159 |
+
.kpi-card::before {
|
| 160 |
+
content: ''; position: absolute;
|
| 161 |
+
bottom: 0; left: 0; right: 0; height: 3px;
|
| 162 |
+
}
|
| 163 |
+
.kpi-card.fulfill::before { background: var(--kpi-fulfill); }
|
| 164 |
+
.kpi-card.trust::before { background: var(--kpi-trust); }
|
| 165 |
+
.kpi-card.cascade::before { background: var(--kpi-cascade); }
|
| 166 |
+
.kpi-card.health::before { background: var(--kpi-health); }
|
| 167 |
+
|
| 168 |
+
.kpi-label {
|
| 169 |
+
font-size: 9px; font-weight: 700; text-transform: uppercase;
|
| 170 |
+
letter-spacing: 1.4px; color: var(--t3); margin-bottom: 3px;
|
| 171 |
+
}
|
| 172 |
+
.kpi-row { display: flex; align-items: baseline; gap: 10px; }
|
| 173 |
+
.kpi-val {
|
| 174 |
+
font-family: var(--mono); font-size: 26px; font-weight: 800;
|
| 175 |
+
line-height: 1;
|
| 176 |
+
}
|
| 177 |
+
.kpi-card.fulfill .kpi-val { color: var(--kpi-fulfill); }
|
| 178 |
+
.kpi-card.trust .kpi-val { color: var(--kpi-trust); }
|
| 179 |
+
.kpi-card.cascade .kpi-val { color: var(--kpi-cascade); }
|
| 180 |
+
.kpi-card.health .kpi-val { color: var(--kpi-health); }
|
| 181 |
+
|
| 182 |
+
.kpi-sub {
|
| 183 |
+
font-size: 10px; color: var(--t3); line-height: 1;
|
| 184 |
+
}
|
| 185 |
+
.kpi-delta {
|
| 186 |
+
font-size: 10px; font-weight: 700; font-family: var(--mono);
|
| 187 |
+
}
|
| 188 |
+
.kpi-delta.up { color: var(--s-completed); }
|
| 189 |
+
.kpi-delta.down { color: var(--s-failed); }
|
| 190 |
+
|
| 191 |
+
/* ══════════════════════════════════════════════
|
| 192 |
+
THEATER LAYOUT
|
| 193 |
+
══════════════════════════════════════════════ */
|
| 194 |
#theater {
|
| 195 |
+
position: fixed;
|
| 196 |
+
top: calc(var(--topbar-h) + var(--kpi-h));
|
| 197 |
+
bottom: var(--timeline-h);
|
| 198 |
+
left: 0; right: 0;
|
| 199 |
+
display: grid;
|
| 200 |
+
grid-template-columns: var(--conv-w) 1fr var(--metrics-w);
|
| 201 |
+
overflow: hidden;
|
| 202 |
}
|
| 203 |
|
| 204 |
+
/* ── LEFT: Conversation Panel ─────────────────── */
|
| 205 |
#conv-panel {
|
| 206 |
+
display: flex; flex-direction: column;
|
| 207 |
+
border-right: 1px solid var(--border);
|
| 208 |
+
background: var(--bg);
|
| 209 |
+
overflow: hidden;
|
| 210 |
}
|
| 211 |
|
| 212 |
#scenario-header {
|
| 213 |
+
padding: 12px 14px;
|
| 214 |
+
border-bottom: 1px solid var(--border);
|
| 215 |
+
background: var(--bg-panel);
|
| 216 |
+
flex-shrink: 0;
|
|
|
|
| 217 |
}
|
| 218 |
+
.sh-eyebrow {
|
| 219 |
+
font-size: 9px; font-weight: 700; text-transform: uppercase;
|
| 220 |
+
letter-spacing: 1.4px; color: var(--t3); margin-bottom: 4px;
|
| 221 |
+
}
|
| 222 |
+
.sh-title { font-size: 13px; font-weight: 700; color: var(--t1); line-height: 1.3; margin-bottom: 2px; }
|
| 223 |
+
.sh-sub { font-size: 11px; color: var(--t3); }
|
| 224 |
|
| 225 |
#message-feed {
|
| 226 |
+
flex: 1; overflow-y: auto;
|
| 227 |
+
padding: 10px 10px 0; display: flex; flex-direction: column; gap: 8px;
|
| 228 |
}
|
| 229 |
+
#message-feed::-webkit-scrollbar { width: 3px; }
|
| 230 |
#message-feed::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
|
| 231 |
|
| 232 |
.feed-empty {
|
| 233 |
+
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
| 234 |
+
gap: 10px; height: 100%; color: var(--t4); text-align: center;
|
| 235 |
+
font-size: 12px; padding: 20px;
|
| 236 |
}
|
| 237 |
+
.fe-icon { font-size: 28px; opacity: 0.3; }
|
| 238 |
+
.fe-text { line-height: 1.6; }
|
| 239 |
|
| 240 |
+
/* Messages */
|
| 241 |
+
.msg { border-radius: var(--r); padding: 10px 12px;
|
| 242 |
+
font-size: 12px; line-height: 1.55; animation: msgIn 0.2s ease both; }
|
| 243 |
+
@keyframes msgIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 244 |
|
| 245 |
+
.msg-system { background: rgba(255,255,255,0.03); color: var(--t3);
|
| 246 |
+
font-size: 11px; text-align: center; padding: 5px 8px; }
|
|
|
|
|
|
|
|
|
|
| 247 |
|
| 248 |
.msg-stakeholder {
|
| 249 |
+
background: rgba(56,189,248,0.06);
|
| 250 |
+
border-left: 2px solid var(--s-accepted);
|
| 251 |
+
border-radius: 0 var(--r) var(--r) var(--r);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 252 |
}
|
| 253 |
+
.msg-from {
|
| 254 |
+
font-size: 10px; font-weight: 700; text-transform: uppercase;
|
| 255 |
+
letter-spacing: 0.8px; color: var(--s-accepted); margin-bottom: 4px;
|
|
|
|
| 256 |
}
|
| 257 |
+
.msg-body { color: var(--t2); }
|
| 258 |
+
.msg-meta { margin-top: 5px; font-size: 10px; color: var(--t3); font-family: var(--mono); }
|
| 259 |
|
| 260 |
.msg-think {
|
| 261 |
+
background: rgba(139,92,246,0.07);
|
| 262 |
+
border: 1px solid rgba(139,92,246,0.2);
|
| 263 |
+
border-radius: var(--r);
|
|
|
|
|
|
|
| 264 |
}
|
| 265 |
.think-header {
|
| 266 |
+
display: flex; align-items: center; gap: 6px;
|
| 267 |
+
padding: 7px 10px; border-bottom: 1px solid rgba(139,92,246,0.2);
|
| 268 |
+
font-size: 10px; font-weight: 700; text-transform: uppercase;
|
| 269 |
+
letter-spacing: 1px; color: var(--brand2);
|
| 270 |
}
|
| 271 |
.think-body {
|
| 272 |
+
padding: 8px 10px;
|
| 273 |
+
font-family: var(--mono); font-size: 10.5px; color: #c4b5fd;
|
| 274 |
+
white-space: pre-wrap; word-break: break-word; line-height: 1.6;
|
|
|
|
| 275 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 276 |
|
| 277 |
.msg-decision {
|
| 278 |
+
border-left: 2px solid var(--s-completed);
|
| 279 |
+
background: rgba(52,211,153,0.05);
|
| 280 |
+
border-radius: 0 var(--r) var(--r) var(--r);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 281 |
}
|
| 282 |
+
.msg-decision.neg {
|
| 283 |
+
border-left-color: var(--s-failed);
|
| 284 |
+
background: rgba(251,113,133,0.05);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 285 |
}
|
| 286 |
+
.md-action { font-size: 13px; font-weight: 700; color: var(--s-completed); margin-bottom: 2px; }
|
| 287 |
+
.msg-decision.neg .md-action { color: var(--s-failed); }
|
| 288 |
+
.md-target { font-size: 11px; color: var(--t2); }
|
| 289 |
+
.md-reward { margin-top: 5px; padding-top: 5px;
|
| 290 |
+
border-top: 1px solid rgba(52,211,153,0.15);
|
| 291 |
+
font-family: var(--mono); font-size: 10px; color: var(--t3); }
|
| 292 |
|
| 293 |
.msg-alert {
|
| 294 |
+
background: rgba(251,191,36,0.07);
|
| 295 |
+
border-left: 2px solid var(--s-at-risk);
|
| 296 |
+
border-radius: 0 var(--r) var(--r) var(--r);
|
| 297 |
+
color: var(--s-at-risk); font-size: 11px;
|
| 298 |
}
|
|
|
|
| 299 |
.msg-cascade {
|
| 300 |
+
background: rgba(251,113,133,0.1);
|
| 301 |
+
border: 1px solid rgba(251,113,133,0.3);
|
| 302 |
+
color: var(--s-failed); text-align: center; font-size: 11px;
|
| 303 |
+
animation: flashRed 0.5s ease;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 304 |
}
|
| 305 |
+
@keyframes flashRed { 0% { background:rgba(251,113,133,0.25); } 100% { background:rgba(251,113,133,0.1); } }
|
| 306 |
|
| 307 |
/* Conv footer */
|
| 308 |
#conv-footer {
|
| 309 |
+
flex-shrink: 0; padding: 10px 10px 12px;
|
| 310 |
+
border-top: 1px solid var(--border);
|
| 311 |
+
background: var(--bg-panel);
|
| 312 |
+
display: flex; flex-direction: column; gap: 8px;
|
| 313 |
+
}
|
| 314 |
+
.cf-label {
|
| 315 |
+
font-size: 9px; font-weight: 700; text-transform: uppercase;
|
| 316 |
+
letter-spacing: 1.2px; color: var(--t3);
|
| 317 |
}
|
|
|
|
|
|
|
|
|
|
| 318 |
.node-select {
|
| 319 |
+
width: 100%; font-family: var(--mono); font-size: 11px;
|
| 320 |
+
padding: 6px 9px; background: var(--bg-input); color: var(--t2);
|
| 321 |
+
border: 1px solid var(--border); border-radius: var(--r-sm);
|
| 322 |
+
outline: none; cursor: pointer;
|
|
|
|
| 323 |
}
|
| 324 |
.node-select:focus { border-color: var(--border-hi); }
|
| 325 |
|
| 326 |
#manual-actions {
|
| 327 |
+
display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 4px;
|
| 328 |
}
|
| 329 |
.ma-btn {
|
| 330 |
+
font-family: var(--font); font-size: 11px; font-weight: 600;
|
| 331 |
+
padding: 7px 0; border: 1px solid var(--border);
|
| 332 |
+
border-radius: var(--r-sm); cursor: pointer;
|
| 333 |
+
background: rgba(255,255,255,0.03); color: var(--t2);
|
| 334 |
+
transition: all 140ms; text-align: center;
|
| 335 |
+
}
|
| 336 |
+
.ma-btn:hover { background: var(--bg-card-hi); color: var(--t1); }
|
| 337 |
+
.ma-btn.accept:hover { border-color: var(--s-completed); color: var(--s-completed); }
|
| 338 |
+
.ma-btn.decline:hover { border-color: var(--s-failed); color: var(--s-failed); }
|
| 339 |
+
.ma-btn.counter:hover { border-color: var(--s-accepted); color: var(--s-accepted); }
|
| 340 |
+
.ma-btn.wait:hover { border-color: var(--s-at-risk); color: var(--s-at-risk); }
|
| 341 |
+
.ma-btn:disabled { opacity: 0.3; cursor: not-allowed; }
|
| 342 |
|
| 343 |
.autoplay-btn {
|
| 344 |
+
width: 100%; font-size: 12px; font-weight: 600; padding: 8px;
|
| 345 |
+
border: none; border-radius: var(--r-sm); cursor: pointer;
|
| 346 |
+
background: linear-gradient(135deg, var(--brand), var(--brand2));
|
| 347 |
+
color: #fff; transition: opacity 160ms, transform 120ms;
|
| 348 |
}
|
| 349 |
.autoplay-btn:hover { opacity: 0.9; transform: translateY(-1px); }
|
| 350 |
+
.autoplay-btn.playing { background: linear-gradient(135deg,#f43f5e,#dc2626); }
|
|
|
|
|
|
|
| 351 |
|
| 352 |
+
/* ── CENTER: Graph Panel ──────────────────────── */
|
| 353 |
#graph-panel {
|
| 354 |
+
display: flex; flex-direction: column;
|
| 355 |
+
background: var(--bg); overflow: hidden; position: relative;
|
|
|
|
| 356 |
}
|
| 357 |
|
| 358 |
#graph-header-bar {
|
| 359 |
+
display: flex; align-items: center; justify-content: space-between;
|
| 360 |
+
padding: 8px 18px;
|
| 361 |
+
border-bottom: 1px solid var(--border);
|
| 362 |
+
background: var(--bg-panel); flex-shrink: 0;
|
|
|
|
| 363 |
}
|
| 364 |
.ghb-title {
|
| 365 |
+
font-size: 10px; font-weight: 700; text-transform: uppercase;
|
| 366 |
+
letter-spacing: 1.4px; color: var(--t3);
|
| 367 |
}
|
| 368 |
+
.ghb-chips { display: flex; gap: 8px; }
|
| 369 |
+
.ghb-chip {
|
| 370 |
+
font-size: 10px; font-family: var(--mono);
|
| 371 |
+
padding: 2px 10px; border-radius: 50px;
|
| 372 |
+
border: 1px solid transparent;
|
| 373 |
}
|
| 374 |
+
.ghb-chip.pending { color: var(--s-pending); border-color: rgba(129,140,248,0.3); background: rgba(129,140,248,0.08); }
|
| 375 |
+
.ghb-chip.active { color: var(--s-accepted); border-color: rgba(56,189,248,0.3); background: rgba(56,189,248,0.08); }
|
| 376 |
+
.ghb-chip.completed { color: var(--s-completed); border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.08); }
|
| 377 |
+
.ghb-chip.failed { color: var(--s-failed); border-color: rgba(251,113,133,0.3); background: rgba(251,113,133,0.08); }
|
| 378 |
|
| 379 |
#graph-area { flex: 1; position: relative; overflow: hidden; }
|
| 380 |
#graph-svg { width: 100%; height: 100%; display: block; }
|
| 381 |
|
| 382 |
#graph-empty {
|
| 383 |
+
position: absolute; inset: 0;
|
| 384 |
+
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
| 385 |
+
gap: 14px; text-align: center; padding: 40px;
|
| 386 |
+
pointer-events: none;
|
| 387 |
}
|
| 388 |
.ge-glyph {
|
| 389 |
+
font-size: 72px; font-weight: 900; color: var(--brand);
|
| 390 |
+
opacity: 0.06; line-height: 1;
|
| 391 |
+
filter: blur(2px);
|
| 392 |
}
|
| 393 |
+
.ge-title { font-size: 20px; font-weight: 700; color: var(--t2); pointer-events: auto; }
|
| 394 |
+
.ge-sub { font-size: 13px; color: var(--t3); line-height: 1.7; }
|
| 395 |
.ge-btn {
|
| 396 |
+
pointer-events: auto;
|
| 397 |
+
margin-top: 6px; font-size: 14px; font-weight: 700;
|
| 398 |
+
padding: 11px 32px;
|
| 399 |
+
background: linear-gradient(135deg, var(--brand), var(--brand2));
|
| 400 |
+
color: #fff; border: none; border-radius: 50px; cursor: pointer;
|
| 401 |
+
box-shadow: 0 4px 20px rgba(99,102,241,0.4);
|
| 402 |
+
transition: transform 150ms, box-shadow 150ms;
|
| 403 |
}
|
| 404 |
+
.ge-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(99,102,241,0.55); }
|
| 405 |
|
| 406 |
#graph-legend {
|
| 407 |
+
display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
|
| 408 |
+
padding: 7px 18px;
|
| 409 |
+
border-top: 1px solid var(--border);
|
| 410 |
+
background: var(--bg-panel); flex-shrink: 0;
|
| 411 |
+
}
|
| 412 |
+
.gl-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--t3); }
|
| 413 |
+
.gl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
|
| 414 |
+
.gl-dot.pending { background: var(--s-pending); box-shadow: 0 0 6px var(--s-pending); }
|
| 415 |
+
.gl-dot.accepted { background: var(--s-accepted); box-shadow: 0 0 6px var(--s-accepted); }
|
| 416 |
+
.gl-dot.completed { background: var(--s-completed); box-shadow: 0 0 6px var(--s-completed); }
|
| 417 |
+
.gl-dot.failed { background: var(--s-failed); box-shadow: 0 0 6px var(--s-failed); }
|
| 418 |
+
.gl-dot.at-risk { background: var(--s-at-risk); box-shadow: 0 0 6px var(--s-at-risk); }
|
| 419 |
+
.gl-line { width: 22px; height: 2px; flex-shrink: 0; }
|
| 420 |
+
.gl-line.dep { background: var(--t4); }
|
| 421 |
+
.gl-line.conflict { background: var(--s-failed); }
|
| 422 |
+
|
| 423 |
+
/* D3 Node styles */
|
| 424 |
+
.node { cursor: pointer; }
|
| 425 |
+
.node .node-bg {
|
| 426 |
+
transition: r 200ms;
|
| 427 |
+
}
|
| 428 |
+
.node .node-ring {
|
| 429 |
+
fill: none; stroke-width: 2;
|
| 430 |
+
transition: stroke 300ms;
|
| 431 |
+
}
|
| 432 |
+
.node .node-letter {
|
| 433 |
+
font-family: var(--font); font-size: 13px; font-weight: 800;
|
| 434 |
+
text-anchor: middle; dominant-baseline: central;
|
| 435 |
+
pointer-events: none;
|
| 436 |
+
}
|
| 437 |
+
.node .node-label {
|
| 438 |
+
font-family: var(--font); font-size: 10px; font-weight: 600;
|
| 439 |
+
fill: var(--t2); text-anchor: middle;
|
| 440 |
+
pointer-events: none;
|
| 441 |
+
}
|
| 442 |
+
.node .node-deadline {
|
| 443 |
+
font-family: var(--mono); font-size: 9px;
|
| 444 |
+
fill: var(--t3); text-anchor: middle;
|
| 445 |
+
pointer-events: none;
|
| 446 |
+
}
|
| 447 |
+
.node.selected .node-ring { stroke-width: 3; }
|
| 448 |
+
.node .node-pulse { fill: none; stroke-width: 1; opacity: 0; }
|
| 449 |
+
|
| 450 |
+
/* Status-specific fills */
|
| 451 |
+
.node.pending .node-bg { fill: rgba(129,140,248,0.1); }
|
| 452 |
+
.node.accepted .node-bg { fill: rgba(56,189,248,0.08); }
|
| 453 |
+
.node.completed .node-bg { fill: rgba(52,211,153,0.08); }
|
| 454 |
+
.node.failed .node-bg { fill: rgba(251,113,133,0.1); }
|
| 455 |
+
|
| 456 |
+
.node.pending .node-ring { stroke: var(--s-pending); }
|
| 457 |
+
.node.accepted .node-ring { stroke: var(--s-accepted); }
|
| 458 |
+
.node.completed .node-ring { stroke: var(--s-completed); }
|
| 459 |
+
.node.failed .node-ring { stroke: var(--s-failed); }
|
| 460 |
+
|
| 461 |
+
.node.pending .node-letter { fill: var(--s-pending); }
|
| 462 |
+
.node.accepted .node-letter { fill: var(--s-accepted); }
|
| 463 |
+
.node.completed .node-letter { fill: var(--s-completed); }
|
| 464 |
+
.node.failed .node-letter { fill: var(--s-failed); }
|
| 465 |
+
|
| 466 |
+
.node.pending .node-pulse {
|
| 467 |
+
stroke: var(--s-pending);
|
| 468 |
+
animation: nodeBreath 2.2s ease-in-out infinite;
|
| 469 |
+
}
|
| 470 |
+
@keyframes nodeBreath {
|
| 471 |
+
0%,100% { r: 26px; opacity: 0; }
|
| 472 |
+
50% { r: 34px; opacity: 0.25; }
|
| 473 |
+
}
|
| 474 |
+
|
| 475 |
+
.node.failed .node-ring { animation: failShake 0.5s ease; }
|
| 476 |
+
@keyframes failShake {
|
| 477 |
+
0%,100% { transform: translate(0,0); }
|
| 478 |
+
20% { transform: translate(-4px,0); }
|
| 479 |
+
40% { transform: translate(4px,0); }
|
| 480 |
+
60% { transform: translate(-3px,0); }
|
| 481 |
+
80% { transform: translate(3px,0); }
|
| 482 |
+
}
|
| 483 |
+
|
| 484 |
+
/* Edges */
|
| 485 |
+
.edge { fill: none; }
|
| 486 |
+
.edge.dependency { stroke: var(--t4); stroke-width: 1.5; stroke-dasharray: 6,3; opacity: 0.7; }
|
| 487 |
+
.edge.conflict { stroke: var(--s-failed); stroke-width: 1.5; stroke-dasharray: 4,3; opacity: 0.6; }
|
| 488 |
+
.edge.trust-impact { stroke: var(--brand2); stroke-width: 1; stroke-dasharray: 2,4; opacity: 0.5; }
|
| 489 |
+
|
| 490 |
+
/* ── RIGHT: Metrics Panel ─────────────────────── */
|
| 491 |
#metrics-panel {
|
| 492 |
+
display: flex; flex-direction: column; gap: 0;
|
| 493 |
+
overflow-y: auto; border-left: 1px solid var(--border);
|
| 494 |
+
background: var(--bg);
|
|
|
|
|
|
|
| 495 |
}
|
| 496 |
+
#metrics-panel::-webkit-scrollbar { width: 3px; }
|
| 497 |
#metrics-panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
|
| 498 |
|
| 499 |
.mc {
|
| 500 |
+
border-bottom: 1px solid var(--border);
|
| 501 |
+
overflow: hidden; flex-shrink: 0;
|
|
|
|
|
|
|
| 502 |
}
|
| 503 |
+
.mc:last-child { border-bottom: none; flex: 1; }
|
| 504 |
|
| 505 |
+
.mc-hd {
|
| 506 |
+
display: flex; align-items: center; justify-content: space-between;
|
| 507 |
+
padding: 9px 14px 8px;
|
| 508 |
+
font-size: 9px; font-weight: 700; text-transform: uppercase;
|
| 509 |
+
letter-spacing: 1.4px; color: var(--t3);
|
| 510 |
+
background: var(--bg-panel);
|
| 511 |
+
border-bottom: 1px solid var(--border);
|
| 512 |
}
|
| 513 |
+
.mc-badge {
|
| 514 |
+
font-family: var(--mono); font-size: 10px; font-weight: 700;
|
| 515 |
+
padding: 2px 7px; border-radius: 4px;
|
|
|
|
| 516 |
}
|
| 517 |
+
.mc-badge.green { background: rgba(52,211,153,0.15); color: var(--s-completed); }
|
| 518 |
+
.mc-badge.blue { background: rgba(56,189,248,0.15); color: var(--s-accepted); }
|
| 519 |
+
.mc-badge.red { background: rgba(251,113,133,0.15); color: var(--s-failed); }
|
| 520 |
+
.mc-badge.purple { background: rgba(139,92,246,0.15); color: var(--brand2); }
|
| 521 |
|
| 522 |
/* Trust */
|
| 523 |
+
#trust-list { padding: 10px 14px; display: flex; flex-direction: column; gap: 12px; }
|
| 524 |
+
.te { display: flex; flex-direction: column; gap: 4px; }
|
| 525 |
+
.te-row1 { display: flex; align-items: center; justify-content: space-between; }
|
| 526 |
+
.te-name { font-size: 12px; font-weight: 600; color: var(--t1); }
|
| 527 |
+
.te-score-wrap { display: flex; align-items: baseline; gap: 5px; }
|
| 528 |
+
.te-score {
|
| 529 |
+
font-family: var(--mono); font-size: 14px; font-weight: 800;
|
| 530 |
+
}
|
| 531 |
+
.te-score.hi { color: var(--s-completed); }
|
| 532 |
+
.te-score.mid { color: var(--s-at-risk); }
|
| 533 |
+
.te-score.lo { color: var(--s-failed); }
|
| 534 |
+
.te-delta {
|
| 535 |
+
font-family: var(--mono); font-size: 10px; font-weight: 600;
|
| 536 |
+
}
|
| 537 |
+
.te-delta.up { color: var(--s-completed); }
|
| 538 |
+
.te-delta.dn { color: var(--s-failed); }
|
| 539 |
+
.te-delta.neu { color: var(--t3); }
|
| 540 |
+
|
| 541 |
+
.te-track {
|
| 542 |
+
height: 5px; background: rgba(255,255,255,0.06);
|
| 543 |
+
border-radius: 3px; overflow: hidden;
|
| 544 |
+
}
|
| 545 |
+
.te-fill {
|
| 546 |
+
height: 100%; border-radius: 3px;
|
| 547 |
+
transition: width 0.5s ease, background 0.3s ease;
|
| 548 |
+
}
|
| 549 |
+
.te-fill.hi { background: linear-gradient(90deg, var(--s-completed), #059669); }
|
| 550 |
+
.te-fill.mid { background: linear-gradient(90deg, var(--s-at-risk), #d97706); }
|
| 551 |
+
.te-fill.lo { background: linear-gradient(90deg, #f97316, var(--s-failed)); }
|
| 552 |
|
| 553 |
.te-dims {
|
| 554 |
+
display: flex; gap: 8px;
|
| 555 |
}
|
| 556 |
+
.te-dim { font-size: 9.5px; color: var(--t3); font-family: var(--mono); }
|
| 557 |
+
.te-dim span { color: var(--t2); }
|
|
|
|
|
|
|
|
|
|
| 558 |
|
| 559 |
/* Capacity */
|
| 560 |
+
#capacity-display { padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
|
| 561 |
+
.cap-header { display: flex; align-items: baseline; gap: 6px; }
|
| 562 |
+
.cap-val { font-family: var(--mono); font-size: 22px; font-weight: 800; color: var(--t1); }
|
| 563 |
+
.cap-sep { color: var(--t4); font-size: 14px; }
|
| 564 |
+
.cap-of { font-family: var(--mono); font-size: 14px; color: var(--t2); }
|
| 565 |
+
.cap-unit { font-size: 10px; color: var(--t3); }
|
| 566 |
+
.cap-track {
|
| 567 |
+
height: 8px; background: rgba(255,255,255,0.06);
|
| 568 |
+
border-radius: 4px; overflow: hidden;
|
| 569 |
+
}
|
| 570 |
+
.cap-fill {
|
| 571 |
+
height: 100%; border-radius: 4px;
|
| 572 |
+
transition: width 0.6s cubic-bezier(.4,0,.2,1), background 0.3s ease;
|
| 573 |
+
background: var(--s-completed);
|
| 574 |
+
}
|
| 575 |
+
.cap-fill.warn { background: linear-gradient(90deg, var(--s-at-risk), #d97706); }
|
| 576 |
+
.cap-fill.crit { background: linear-gradient(90deg, #f97316, var(--s-failed));
|
| 577 |
+
animation: capPulse 0.9s ease infinite; }
|
| 578 |
+
@keyframes capPulse { 0%,100%{opacity:1;} 50%{opacity:0.65;} }
|
| 579 |
+
.cap-zones { display: flex; justify-content: space-between; font-size: 9px; color: var(--t4); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 580 |
|
| 581 |
/* Reward breakdown */
|
| 582 |
+
#reward-display { padding: 10px 14px; }
|
| 583 |
+
.rwd-empty { font-size: 11px; color: var(--t3); }
|
| 584 |
.rwd-total {
|
| 585 |
+
font-family: var(--mono); font-size: 28px; font-weight: 800;
|
| 586 |
+
text-align: center; margin-bottom: 10px;
|
| 587 |
+
transition: color 300ms;
|
| 588 |
}
|
| 589 |
+
.rwd-total.pos { color: var(--s-completed); }
|
| 590 |
+
.rwd-total.neg { color: var(--s-failed); }
|
|
|
|
| 591 |
.rwd-row {
|
| 592 |
+
display: flex; justify-content: space-between; align-items: center;
|
| 593 |
+
padding: 3px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
|
| 594 |
+
font-size: 11px;
|
| 595 |
}
|
| 596 |
.rwd-row:last-child { border: none; }
|
| 597 |
+
.rwd-k { color: var(--t2); }
|
| 598 |
+
.rwd-v { font-family: var(--mono); font-size: 11px; }
|
| 599 |
+
.rwd-v.pos { color: var(--s-completed); }
|
| 600 |
+
.rwd-v.neg { color: var(--s-failed); }
|
| 601 |
+
.rwd-v.zero { color: var(--t4); }
|
| 602 |
|
| 603 |
/* Target detail */
|
| 604 |
+
#target-detail { padding: 10px 14px; }
|
| 605 |
+
.td-empty { font-size: 11px; color: var(--t3); }
|
| 606 |
+
.td-name { font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 8px; }
|
| 607 |
+
.td-row { display: flex; justify-content: space-between; padding: 4px 0;
|
| 608 |
+
border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 11px; }
|
| 609 |
.td-row:last-child { border: none; }
|
| 610 |
+
.td-k { color: var(--t3); }
|
| 611 |
+
.td-v { color: var(--t1); font-family: var(--mono); font-weight: 600; }
|
| 612 |
+
.td-badge {
|
| 613 |
+
display: inline-block; padding: 2px 8px; border-radius: 50px;
|
| 614 |
+
font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
|
| 615 |
}
|
| 616 |
+
.td-badge.pending { background: rgba(129,140,248,0.15); color: var(--s-pending); }
|
| 617 |
+
.td-badge.accepted { background: rgba(56,189,248,0.12); color: var(--s-accepted); }
|
| 618 |
+
.td-badge.completed { background: rgba(52,211,153,0.12); color: var(--s-completed); }
|
| 619 |
+
.td-badge.failed { background: rgba(251,113,133,0.12); color: var(--s-failed); }
|
| 620 |
|
| 621 |
/* Log */
|
| 622 |
+
#log-list { padding: 6px 10px; overflow-y: auto; max-height: 130px; display: flex; flex-direction: column; gap: 3px; }
|
|
|
|
|
|
|
| 623 |
#log-list::-webkit-scrollbar { width: 3px; }
|
| 624 |
+
#log-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
|
| 625 |
+
.log-item { font-size: 11px; padding: 3px 7px; border-radius: var(--r-sm);
|
| 626 |
+
border-left: 2px solid transparent; animation: logIn 0.2s ease; }
|
| 627 |
+
@keyframes logIn { from{opacity:0;} to{opacity:1;} }
|
| 628 |
+
.log-item.system { color: var(--t3); border-left-color: var(--border); }
|
| 629 |
+
.log-item.agent { color: var(--s-accepted); border-left-color: var(--s-accepted); }
|
| 630 |
+
.log-item.success { color: var(--s-completed); border-left-color: var(--s-completed); }
|
| 631 |
+
.log-item.danger { color: var(--s-failed); border-left-color: var(--s-failed); }
|
| 632 |
+
.log-item.response{ color: var(--t2); border-left-color: var(--brand2); font-style: italic; }
|
| 633 |
+
|
| 634 |
+
/* ═══════════════════════════════════════════��══
|
|
|
|
|
|
|
|
|
|
|
|
|
| 635 |
DECISION TIMELINE
|
| 636 |
+
══════════════════════════════════════════════ */
|
| 637 |
#timeline-bar {
|
| 638 |
+
position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
|
| 639 |
+
height: var(--timeline-h);
|
| 640 |
+
display: flex; align-items: center; gap: 12px; padding: 0 18px;
|
| 641 |
+
background: var(--bg-panel); border-top: 1px solid var(--border);
|
| 642 |
+
overflow-x: auto; overflow-y: hidden;
|
|
|
|
|
|
|
|
|
|
| 643 |
}
|
| 644 |
#timeline-bar::-webkit-scrollbar { height: 3px; }
|
| 645 |
#timeline-bar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
|
| 646 |
+
.tl-label { font-size: 9px; font-weight: 700; text-transform: uppercase;
|
| 647 |
+
letter-spacing: 1.2px; color: var(--t3); flex-shrink: 0; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 648 |
#timeline-track { display: flex; align-items: center; gap: 4px; height: 100%; }
|
|
|
|
| 649 |
.tl-step {
|
| 650 |
+
display: flex; flex-direction: column; align-items: center; justify-content: center;
|
| 651 |
+
gap: 1px; padding: 5px 10px; border-radius: var(--r-sm);
|
| 652 |
+
border: 1px solid var(--border); background: rgba(255,255,255,0.02);
|
| 653 |
+
cursor: default; flex-shrink: 0; animation: tlIn 0.2s ease;
|
| 654 |
+
transition: border-color 140ms; min-width: 58px;
|
| 655 |
+
}
|
| 656 |
+
@keyframes tlIn { from{opacity:0;transform:scale(0.85);} to{opacity:1;transform:scale(1);} }
|
| 657 |
+
.tl-step.accept { border-color: rgba(52,211,153,0.35); }
|
| 658 |
+
.tl-step.decline { border-color: rgba(251,113,133,0.35); }
|
| 659 |
+
.tl-step.counter { border-color: rgba(56,189,248,0.35); }
|
| 660 |
+
.tl-step.do_nothing { opacity: 0.45; }
|
| 661 |
+
.tl-icon { font-size: 14px; line-height: 1; }
|
| 662 |
+
.tl-num { font-size: 8px; color: var(--t4); font-family: var(--mono); }
|
| 663 |
+
.tl-r { font-family: var(--mono); font-size: 9px; font-weight: 700; }
|
| 664 |
+
.tl-r.pos { color: var(--s-completed); }
|
| 665 |
+
.tl-r.neg { color: var(--s-failed); }
|
| 666 |
+
.tl-conn { width: 14px; height: 1px; background: var(--border); flex-shrink: 0; opacity: 0.4; }
|
| 667 |
+
|
| 668 |
+
/* ══════════════════════════════════════════════
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 669 |
COMPARE OVERLAY
|
| 670 |
+
══════════════════════════════════════════════ */
|
| 671 |
#compare-overlay {
|
| 672 |
+
position: fixed; inset: 0; z-index: 300;
|
| 673 |
+
display: flex; flex-direction: column;
|
| 674 |
+
background: var(--bg);
|
| 675 |
+
animation: fadeIn 0.25s ease;
|
| 676 |
}
|
| 677 |
+
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
|
| 678 |
|
| 679 |
.cmp-topbar {
|
| 680 |
+
display: flex; align-items: center; justify-content: space-between;
|
| 681 |
+
padding: 12px 20px;
|
| 682 |
+
border-bottom: 1px solid var(--border);
|
| 683 |
+
background: var(--bg-panel); flex-shrink: 0;
|
|
|
|
| 684 |
}
|
| 685 |
.cmp-scenario-info { display: flex; align-items: center; gap: 12px; }
|
| 686 |
+
.cmp-icon { font-size: 26px; }
|
| 687 |
+
.cmp-scenario-name { font-size: 16px; font-weight: 800; color: var(--t1); }
|
| 688 |
+
.cmp-scenario-desc { font-size: 11px; color: var(--t3); margin-top: 1px; }
|
|
|
|
| 689 |
.cmp-controls { display: flex; align-items: center; gap: 8px; }
|
| 690 |
+
.cmp-step-label { font-family: var(--mono); font-size: 12px; color: var(--t2); min-width: 84px; text-align: center; }
|
| 691 |
+
.cmp-step-btn { padding: 5px 14px; font-family: var(--mono); font-size: 16px; font-weight: 700; }
|
|
|
|
|
|
|
|
|
|
| 692 |
.btn-close-cmp {
|
| 693 |
+
font-size: 12px; padding: 6px 14px;
|
| 694 |
+
background: rgba(251,113,133,0.1); color: var(--s-failed);
|
| 695 |
+
border: 1px solid rgba(251,113,133,0.3); border-radius: var(--r-sm); cursor: pointer;
|
| 696 |
}
|
| 697 |
+
.btn-close-cmp:hover { background: rgba(251,113,133,0.2); }
|
| 698 |
|
| 699 |
.cmp-loading {
|
| 700 |
+
flex: 1; display: flex; flex-direction: column;
|
| 701 |
+
align-items: center; justify-content: center; gap: 16px; color: var(--t3);
|
|
|
|
| 702 |
}
|
| 703 |
.cmp-spinner {
|
| 704 |
+
width: 40px; height: 40px; border-radius: 50%;
|
| 705 |
+
border: 3px solid var(--border); border-top-color: var(--brand);
|
| 706 |
+
animation: spin 0.8s linear infinite;
|
|
|
|
| 707 |
}
|
| 708 |
+
@keyframes spin { to{transform:rotate(360deg);} }
|
| 709 |
|
| 710 |
.cmp-body {
|
| 711 |
+
flex: 1; display: grid; grid-template-columns: 1fr 130px 1fr; overflow: hidden;
|
|
|
|
|
|
|
| 712 |
}
|
|
|
|
| 713 |
.cmp-side { display: flex; flex-direction: column; overflow: hidden; }
|
| 714 |
+
.cmp-side-hd {
|
| 715 |
+
padding: 10px 18px; flex-shrink: 0;
|
| 716 |
+
border-bottom: 1px solid var(--border);
|
| 717 |
+
display: flex; flex-direction: column; gap: 2px;
|
| 718 |
+
}
|
| 719 |
+
.naive-hd { background: rgba(251,113,133,0.06); }
|
| 720 |
+
.vergil-hd { background: rgba(52,211,153,0.06); }
|
| 721 |
+
.csh-badge { font-size: 14px; font-weight: 800; }
|
| 722 |
+
.naive-hd .csh-badge { color: var(--s-failed); }
|
| 723 |
+
.vergil-hd .csh-badge { color: var(--s-completed); }
|
| 724 |
+
.csh-sub { font-size: 11px; color: var(--t3); }
|
|
|
|
|
|
|
|
|
|
|
|
|
| 725 |
|
| 726 |
.cmp-svg { flex: 1; display: block; }
|
| 727 |
|
| 728 |
.cmp-side-stats {
|
| 729 |
+
display: flex; gap: 16px; padding: 8px 16px;
|
| 730 |
+
border-top: 1px solid var(--border); flex-shrink: 0;
|
| 731 |
+
font-family: var(--mono); font-size: 11px;
|
|
|
|
| 732 |
}
|
| 733 |
.css-stat { display: flex; flex-direction: column; gap: 1px; }
|
| 734 |
+
.css-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--t3); }
|
| 735 |
+
.css-v { font-weight: 700; color: var(--t1); }
|
| 736 |
|
| 737 |
+
.cmp-step-display {
|
| 738 |
+
padding: 8px 14px; font-size: 11px; color: var(--t2); line-height: 1.5;
|
| 739 |
+
border-top: 1px solid var(--border); min-height: 58px; max-height: 80px;
|
| 740 |
+
overflow-y: auto; flex-shrink: 0; background: rgba(255,255,255,0.02);
|
|
|
|
|
|
|
|
|
|
| 741 |
}
|
| 742 |
+
.cmp-think-display {
|
| 743 |
+
font-family: var(--mono); font-size: 10px; color: #c4b5fd;
|
| 744 |
+
background: rgba(139,92,246,0.07);
|
| 745 |
}
|
| 746 |
|
|
|
|
| 747 |
.cmp-center {
|
| 748 |
+
border-left: 1px solid var(--border);
|
| 749 |
+
border-right: 1px solid var(--border);
|
| 750 |
+
display: flex; flex-direction: column;
|
| 751 |
+
align-items: center; justify-content: center;
|
| 752 |
+
gap: 10px; padding: 16px 10px;
|
| 753 |
+
background: var(--bg-panel);
|
| 754 |
}
|
| 755 |
.cmp-delta-title {
|
| 756 |
+
font-size: 9px; font-weight: 800; text-transform: uppercase;
|
| 757 |
+
letter-spacing: 1.5px; color: var(--t3); margin-bottom: 2px;
|
| 758 |
}
|
| 759 |
.delta-row {
|
| 760 |
+
width: 100%; text-align: center; padding: 9px 6px;
|
| 761 |
+
background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 762 |
}
|
| 763 |
+
.dr-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--t3); margin-bottom: 3px; }
|
| 764 |
+
.dr-v { font-family: var(--mono); font-size: 17px; font-weight: 800; color: var(--t2); }
|
| 765 |
+
.dr-v.better { color: var(--s-completed); }
|
| 766 |
+
.dr-v.worse { color: var(--s-failed); }
|
| 767 |
|
| 768 |
.cmp-verdict {
|
| 769 |
+
width: 100%; text-align: center; padding: 9px 6px;
|
| 770 |
+
background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.2);
|
| 771 |
+
border-radius: var(--r); font-size: 11px; font-weight: 600;
|
| 772 |
+
color: var(--s-completed); line-height: 1.5;
|
|
|
|
| 773 |
}
|
|
@@ -48,9 +48,14 @@ from vergil.curriculum.failure_db import FailureTopologyDatabase
|
|
| 48 |
|
| 49 |
def state_to_prompt(state, env) -> str:
|
| 50 |
"""
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
"""
|
| 55 |
nodes = state.cdg_nodes
|
| 56 |
pending = [n for n in nodes if n.status == CommitmentStatus.PENDING]
|
|
@@ -59,91 +64,90 @@ def state_to_prompt(state, env) -> str:
|
|
| 59 |
trust_entries = state.trust_entries
|
| 60 |
md_trust = getattr(env, 'multidim_trust', {})
|
| 61 |
|
| 62 |
-
# Compute capacity summary for the reasoning block
|
| 63 |
total_committed = sum(n.estimated_duration_hours for n in accepted)
|
| 64 |
available = getattr(state, 'available_hours_next_48h', 8.0)
|
| 65 |
-
|
| 66 |
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
prompt += f"Cognitive Load: {state.cognitive_load:.2f}\n"
|
| 74 |
-
prompt += f"Available Hours (48h): {available:.1f}h | "
|
| 75 |
-
prompt += f"Already Committed: {total_committed:.1f}h | "
|
| 76 |
-
prompt += f"Remaining Capacity: {remaining_capacity:.1f}h\n\n"
|
| 77 |
|
| 78 |
if pending:
|
| 79 |
-
|
|
|
|
| 80 |
for n in pending:
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
f" Duration: {n.estimated_duration_hours}h | "
|
| 85 |
-
f"Deadline: {deadline_str} | Urgency: {n.urgency:.0%}\n")
|
| 86 |
-
prompt += "\n"
|
| 87 |
|
| 88 |
if accepted:
|
| 89 |
-
|
| 90 |
for n in accepted:
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
prompt += "• DECLINE: When infeasible AND trust level permits (trust > 0.35)\n"
|
| 111 |
-
prompt += "• COUNTER_PROPOSE: When feasible with modified terms (later deadline, reduced scope)\n"
|
| 112 |
-
prompt += "• DO_NOTHING: When no pending items or gathering information\n"
|
| 113 |
-
prompt += "⚠ Warning: Accepting infeasible tasks will cause cascade failures and destroy trust.\n"
|
| 114 |
-
prompt += "⚠ Warning: Silently dropping accepted tasks is the WORST outcome (penalty = 0.5 × time held).\n"
|
| 115 |
-
|
| 116 |
-
prompt += "\n<think>\n"
|
| 117 |
-
prompt += "Let me analyze this systematically:\n"
|
| 118 |
-
prompt += "1. Capacity check: [calculate if accepting each pending item is feasible]\n"
|
| 119 |
-
prompt += "2. Implicit commitment cost: [what additional overhead does this create?]\n"
|
| 120 |
-
prompt += "3. Trust impact: [what happens if I decline vs accept vs counter?]\n"
|
| 121 |
-
prompt += "4. Cascade risk: [which active commitments are at risk if I take on more?]\n"
|
| 122 |
-
prompt += "5. Optimal action: [which action maximizes long-term trust × fulfillment?]\n"
|
| 123 |
-
prompt += "</think>\n\n"
|
| 124 |
-
|
| 125 |
-
prompt += "Respond with ONLY a JSON object (no other text after the JSON):\n"
|
| 126 |
-
prompt += '{"action": "accept|decline|counter_propose|do_nothing", '
|
| 127 |
-
prompt += '"target": "<node_id or null>", '
|
| 128 |
-
prompt += '"reasoning": "<1-2 sentence explanation>"}\n'
|
| 129 |
-
|
| 130 |
-
return prompt
|
| 131 |
|
| 132 |
|
| 133 |
def parse_llm_output(text: str, pending_nodes: List) -> tuple:
|
| 134 |
-
"""
|
| 135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 136 |
|
| 137 |
-
# Try JSON parse
|
|
|
|
| 138 |
try:
|
| 139 |
import json as _json
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
end = text.rfind('}') + 1
|
| 143 |
if start >= 0 and end > start:
|
| 144 |
-
data = _json.loads(
|
| 145 |
-
action_str = data.get('action', 'do_nothing')
|
| 146 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 147 |
|
| 148 |
action_map = {
|
| 149 |
'accept': ActionType.ACCEPT,
|
|
@@ -154,26 +158,46 @@ def parse_llm_output(text: str, pending_nodes: List) -> tuple:
|
|
| 154 |
'wait': ActionType.DO_NOTHING,
|
| 155 |
}
|
| 156 |
action_type = action_map.get(action_str, ActionType.DO_NOTHING)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 157 |
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
|
| 171 |
-
|
| 172 |
-
|
| 173 |
-
|
| 174 |
-
|
| 175 |
else:
|
| 176 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 177 |
|
| 178 |
|
| 179 |
# ═══════════════════════════════════════════════════════════════════════════
|
|
@@ -230,108 +254,131 @@ def _restore_env(env, pomdp, snapshot: dict):
|
|
| 230 |
pomdp.current_belief = copy.deepcopy(snapshot['belief'])
|
| 231 |
|
| 232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 233 |
def vergil_reward_function(prompts, completions, **kwargs) -> list:
|
| 234 |
"""
|
| 235 |
Reward function for TRL's GRPOTrainer.
|
| 236 |
|
| 237 |
-
|
| 238 |
-
|
| 239 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 240 |
|
| 241 |
-
|
| 242 |
-
- format_bonus: +0.03 if output is valid JSON with required keys
|
| 243 |
-
- think_bonus: +0.02 if <think>...</think> block is present
|
| 244 |
-
- format_penalty: -0.05 for completely unparseable output
|
| 245 |
"""
|
| 246 |
rewards = []
|
| 247 |
env = kwargs.get('env')
|
| 248 |
pomdp = kwargs.get('pomdp')
|
| 249 |
num_generations = kwargs.get('num_generations', 4)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 250 |
|
| 251 |
-
#
|
| 252 |
for group_start in range(0, len(prompts), num_generations):
|
| 253 |
-
group_prompts = prompts[group_start:group_start + num_generations]
|
| 254 |
group_completions = completions[group_start:group_start + num_generations]
|
| 255 |
-
|
| 256 |
-
# Snapshot BEFORE evaluating this group
|
| 257 |
snapshot = _snapshot_env(env, pomdp)
|
| 258 |
-
|
| 259 |
-
for prompt, completion in zip(group_prompts, group_completions):
|
| 260 |
-
# Restore to the same starting state for every completion in the group
|
| 261 |
_restore_env(env, pomdp, snapshot)
|
| 262 |
-
|
| 263 |
try:
|
| 264 |
-
|
| 265 |
-
|
| 266 |
-
|
| 267 |
-
|
| 268 |
-
|
| 269 |
-
pending = [n for n in state.cdg_nodes
|
| 270 |
-
if n.status == CommitmentStatus.PENDING]
|
| 271 |
|
| 272 |
-
# Parse LLM output
|
| 273 |
-
action_type, target = parse_llm_output(completion, pending)
|
| 274 |
-
|
| 275 |
-
# Validate: node-targeting actions require a pending target
|
| 276 |
-
if action_type in (ActionType.ACCEPT, ActionType.DECLINE,
|
| 277 |
-
ActionType.COUNTER_PROPOSE):
|
| 278 |
-
if not pending:
|
| 279 |
-
action_type = ActionType.DO_NOTHING
|
| 280 |
-
target = None
|
| 281 |
-
elif target is None:
|
| 282 |
-
target = pending[0].node_id
|
| 283 |
-
|
| 284 |
-
# Build feasibility prediction: estimate based on capacity
|
| 285 |
-
available = getattr(state, 'available_hours_next_48h', 8.0)
|
| 286 |
-
committed = sum(n.estimated_duration_hours for n in
|
| 287 |
-
[n for n in state.cdg_nodes if n.status == CommitmentStatus.ACCEPTED])
|
| 288 |
-
target_node = next((n for n in state.cdg_nodes if n.node_id == target), None)
|
| 289 |
-
new_cost = target_node.estimated_duration_hours if target_node else 0.0
|
| 290 |
-
feasibility_pred = float(committed + new_cost <= available)
|
| 291 |
-
|
| 292 |
-
action = AgentAction(
|
| 293 |
-
action_type=action_type,
|
| 294 |
-
target_node_id=target,
|
| 295 |
-
feasibility_prediction=feasibility_pred,
|
| 296 |
-
)
|
| 297 |
|
| 298 |
-
|
| 299 |
-
|
| 300 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 301 |
|
| 302 |
-
|
| 303 |
-
|
| 304 |
-
simulate_task_progress(env)
|
| 305 |
|
| 306 |
-
|
| 307 |
-
|
| 308 |
-
try:
|
| 309 |
-
import json as _j
|
| 310 |
-
s = completion.find('{')
|
| 311 |
-
e = completion.rfind('}') + 1
|
| 312 |
-
parsed = _j.loads(completion[s:e]) if s >= 0 else {}
|
| 313 |
-
has_required_keys = all(k in parsed for k in ('action', 'target', 'reasoning'))
|
| 314 |
-
except Exception:
|
| 315 |
-
has_required_keys = False
|
| 316 |
-
|
| 317 |
-
has_think_block = '<think>' in completion and '</think>' in completion
|
| 318 |
-
|
| 319 |
-
format_bonus = 0.0
|
| 320 |
-
if has_json and has_required_keys:
|
| 321 |
-
format_bonus += 0.03
|
| 322 |
-
elif has_json:
|
| 323 |
-
format_bonus += 0.01
|
| 324 |
-
else:
|
| 325 |
-
format_bonus -= 0.05
|
| 326 |
-
if has_think_block:
|
| 327 |
-
format_bonus += 0.02
|
| 328 |
|
| 329 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 330 |
|
| 331 |
-
|
| 332 |
-
|
|
|
|
| 333 |
|
| 334 |
-
return
|
| 335 |
|
| 336 |
|
| 337 |
# ═══════════════════════════════════════════════════════════════════════════
|
|
@@ -343,11 +390,25 @@ def train_grpo():
|
|
| 343 |
Main GRPO training function.
|
| 344 |
Run this on a GPU-enabled Colab/Kaggle notebook.
|
| 345 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 346 |
print("╔══════════════════════════════════════════════════╗")
|
| 347 |
print("║ VERGIL GRPO Training — LLM Fine-Tuning ║")
|
| 348 |
print("╠══════════════════════════════════════════════════╣")
|
| 349 |
-
print("║ Model:
|
| 350 |
-
print("║
|
|
|
|
|
|
|
| 351 |
print("║ Environment: VERGIL CDG Engine ║")
|
| 352 |
print("╚══════════════════════════════════════════════════╝")
|
| 353 |
|
|
@@ -356,19 +417,19 @@ def train_grpo():
|
|
| 356 |
from unsloth import FastLanguageModel
|
| 357 |
|
| 358 |
model, tokenizer = FastLanguageModel.from_pretrained(
|
| 359 |
-
model_name=
|
| 360 |
-
max_seq_length=
|
| 361 |
-
load_in_4bit=
|
| 362 |
dtype=None, # Auto-detect
|
| 363 |
)
|
| 364 |
|
| 365 |
# Add LoRA adapters — rank=64 for richer commitment reasoning capacity
|
| 366 |
model = FastLanguageModel.get_peft_model(
|
| 367 |
model,
|
| 368 |
-
r=
|
| 369 |
target_modules=["q_proj", "k_proj", "v_proj", "o_proj",
|
| 370 |
"gate_proj", "up_proj", "down_proj"],
|
| 371 |
-
lora_alpha=
|
| 372 |
lora_dropout=0,
|
| 373 |
bias="none",
|
| 374 |
use_gradient_checkpointing="unsloth",
|
|
@@ -391,14 +452,30 @@ def train_grpo():
|
|
| 391 |
)
|
| 392 |
print(" Environment ready.")
|
| 393 |
|
| 394 |
-
# ── Step 3: Generate Training Prompts ──────
|
| 395 |
-
#
|
| 396 |
-
#
|
|
|
|
|
|
|
| 397 |
print("\n📝 Generating training prompts across curriculum stages...")
|
| 398 |
-
training_prompts = []
|
| 399 |
-
|
| 400 |
-
|
| 401 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 402 |
|
| 403 |
for stage, n_episodes in STAGE_EPISODES.items():
|
| 404 |
print(f" Stage {stage}: generating {n_episodes} episodes...")
|
|
@@ -411,8 +488,10 @@ def train_grpo():
|
|
| 411 |
|
| 412 |
for j in range(min(8, env._max_steps)):
|
| 413 |
simulate_task_progress(env)
|
| 414 |
-
|
| 415 |
-
|
|
|
|
|
|
|
| 416 |
|
| 417 |
pending = [n for n in state.cdg_nodes
|
| 418 |
if n.status == CommitmentStatus.PENDING]
|
|
@@ -437,59 +516,143 @@ def train_grpo():
|
|
| 437 |
if term or trunc:
|
| 438 |
break
|
| 439 |
|
| 440 |
-
|
| 441 |
-
|
|
|
|
|
|
|
|
|
|
| 442 |
|
| 443 |
# ── Step 4: GRPO Training ─────────────────────────────────────────────
|
| 444 |
print("\n🚀 Starting GRPO training...")
|
| 445 |
|
| 446 |
from trl import GRPOConfig, GRPOTrainer
|
| 447 |
|
| 448 |
-
#
|
| 449 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 450 |
|
| 451 |
training_config = GRPOConfig(
|
| 452 |
output_dir="/tmp/vergil_grpo_output",
|
| 453 |
num_train_epochs=1,
|
| 454 |
-
max_steps=
|
| 455 |
-
per_device_train_batch_size=
|
| 456 |
-
gradient_accumulation_steps=
|
| 457 |
-
learning_rate=
|
| 458 |
-
max_completion_length=
|
| 459 |
-
num_generations=NUM_GENERATIONS,
|
| 460 |
logging_steps=5,
|
| 461 |
-
save_steps=
|
| 462 |
-
warmup_steps=10,
|
| 463 |
report_to="none",
|
| 464 |
temperature=0.9,
|
| 465 |
top_p=0.95,
|
|
|
|
| 466 |
)
|
| 467 |
|
| 468 |
-
# Create dataset —
|
|
|
|
|
|
|
| 469 |
from datasets import Dataset
|
| 470 |
|
| 471 |
dataset = Dataset.from_dict({
|
| 472 |
-
"prompt": training_prompts,
|
|
|
|
| 473 |
})
|
| 474 |
|
| 475 |
validation_log = []
|
| 476 |
|
| 477 |
-
def reward_fn(prompts, completions, **kw):
|
| 478 |
-
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 479 |
return vergil_reward_function(
|
| 480 |
prompts, completions,
|
| 481 |
env=env, pomdp=pomdp,
|
| 482 |
num_generations=NUM_GENERATIONS,
|
|
|
|
|
|
|
| 483 |
)
|
| 484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 485 |
trainer = GRPOTrainer(
|
| 486 |
model=model,
|
| 487 |
args=training_config,
|
| 488 |
train_dataset=dataset,
|
| 489 |
-
reward_funcs=[reward_fn],
|
| 490 |
processing_class=tokenizer,
|
| 491 |
)
|
| 492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 493 |
# ── Validation Callback: Log progress every 50 steps ──────────────────
|
| 494 |
def run_validation(step_num: int):
|
| 495 |
"""Run 10 eval episodes and log average reward + fulfillment rate."""
|
|
@@ -506,13 +669,14 @@ def train_grpo():
|
|
| 506 |
p = state_to_prompt(vs, env)
|
| 507 |
inp = tokenizer(p, return_tensors="pt").to(model.device)
|
| 508 |
out = model.generate(
|
| 509 |
-
**inp,
|
|
|
|
|
|
|
|
|
|
| 510 |
)
|
| 511 |
comp = tokenizer.decode(out[0][inp.input_ids.shape[1]:], skip_special_tokens=True)
|
| 512 |
pend = [n for n in vs.cdg_nodes if n.status == CommitmentStatus.PENDING]
|
| 513 |
at, tgt = parse_llm_output(comp, pend)
|
| 514 |
-
if at in (ActionType.ACCEPT, ActionType.DECLINE, ActionType.COUNTER_PROPOSE) and not pend:
|
| 515 |
-
at, tgt = ActionType.DO_NOTHING, None
|
| 516 |
act = AgentAction(action_type=at, target_node_id=tgt)
|
| 517 |
vs, vb, r, done, trunc, _ = pomdp.step(act)
|
| 518 |
simulate_task_progress(env)
|
|
@@ -542,81 +706,138 @@ def train_grpo():
|
|
| 542 |
train_result = trainer.train()
|
| 543 |
elapsed = time.time() - start_time
|
| 544 |
|
| 545 |
-
# Final validation
|
| 546 |
-
run_validation(step_num=training_config.max_steps if hasattr(training_config, 'max_steps') else 999)
|
| 547 |
-
|
| 548 |
-
# Save validation curve
|
| 549 |
-
val_path = Path('/tmp/vergil_grpo_output/validation_log.json')
|
| 550 |
-
val_path.write_text(json.dumps(validation_log, indent=2))
|
| 551 |
-
|
| 552 |
print(f"\n✅ Training complete in {elapsed/60:.1f} minutes")
|
| 553 |
print(f" Final loss: {train_result.training_loss:.4f}")
|
| 554 |
|
| 555 |
-
#
|
| 556 |
-
|
| 557 |
-
|
| 558 |
-
|
| 559 |
-
|
| 560 |
-
|
| 561 |
-
|
| 562 |
-
|
| 563 |
-
|
| 564 |
-
|
| 565 |
-
|
| 566 |
-
|
| 567 |
-
|
| 568 |
-
|
| 569 |
-
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
|
| 573 |
-
|
| 574 |
-
|
| 575 |
-
|
| 576 |
-
|
| 577 |
-
skip_special_tokens=True)
|
| 578 |
-
|
| 579 |
-
pending = [n for n in state.cdg_nodes
|
| 580 |
-
if n.status == CommitmentStatus.PENDING]
|
| 581 |
-
action_type, target = parse_llm_output(completion, pending)
|
| 582 |
-
|
| 583 |
-
if action_type in (ActionType.ACCEPT, ActionType.DECLINE,
|
| 584 |
-
ActionType.COUNTER_PROPOSE) and not pending:
|
| 585 |
-
action_type = ActionType.DO_NOTHING
|
| 586 |
-
target = None
|
| 587 |
-
|
| 588 |
-
action = AgentAction(
|
| 589 |
-
action_type=action_type,
|
| 590 |
-
target_node_id=target,
|
| 591 |
-
)
|
| 592 |
-
|
| 593 |
-
state, belief, reward, term, trunc, step_info = pomdp.step(action)
|
| 594 |
-
simulate_task_progress(env)
|
| 595 |
-
episode_reward += reward
|
| 596 |
-
|
| 597 |
-
if term or trunc:
|
| 598 |
-
break
|
| 599 |
-
|
| 600 |
-
eval_rewards.append(episode_reward)
|
| 601 |
-
|
| 602 |
-
print(f" Post-training reward: {np.mean(eval_rewards):+.3f}")
|
| 603 |
-
|
| 604 |
-
# ── Step 6: Save to HuggingFace ───────────────────────────────────────
|
| 605 |
-
print("\n💾 Saving model...")
|
| 606 |
-
model.save_pretrained("/tmp/vergil_grpo_model")
|
| 607 |
-
tokenizer.save_pretrained("/tmp/vergil_grpo_model")
|
| 608 |
|
| 609 |
-
# ──
|
| 610 |
hf_token = os.getenv('HF_TOKEN')
|
| 611 |
-
repo_id = "Laksh718/vergil-commitment-engine"
|
|
|
|
| 612 |
if hf_token:
|
| 613 |
print(f"\n🚀 Pushing model to HuggingFace Hub: {repo_id}")
|
| 614 |
try:
|
| 615 |
-
model.push_to_hub(
|
| 616 |
-
|
|
|
|
|
|
|
|
|
|
| 617 |
tokenizer.push_to_hub(repo_id, token=hf_token)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 618 |
|
| 619 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 620 |
vp = Path('/tmp/vergil_grpo_output/validation_log.json')
|
| 621 |
if vp.exists():
|
| 622 |
from huggingface_hub import HfApi
|
|
@@ -627,19 +848,19 @@ def train_grpo():
|
|
| 627 |
token=hf_token,
|
| 628 |
commit_message="Add validation log",
|
| 629 |
)
|
| 630 |
-
print(f" ✅ Model live at https://huggingface.co/{repo_id}")
|
| 631 |
except Exception as e:
|
| 632 |
-
print(f" ⚠️
|
| 633 |
-
print(f" Model saved locally at /tmp/vergil_grpo_model")
|
| 634 |
-
else:
|
| 635 |
-
print("\n⚠️ No HF_TOKEN env var — model saved locally only")
|
| 636 |
-
print(f" To push: model.push_to_hub('{repo_id}', token='your_token')")
|
| 637 |
|
| 638 |
print("\n═══════════════════════════════════════════════════════")
|
| 639 |
print(" GRPO TRAINING COMPLETE")
|
| 640 |
-
print(f" Model saved to:
|
| 641 |
-
print(f"
|
| 642 |
-
print(f"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 643 |
print("═══════════════════════════════════════════════════════")
|
| 644 |
|
| 645 |
|
|
|
|
| 48 |
|
| 49 |
def state_to_prompt(state, env) -> str:
|
| 50 |
"""
|
| 51 |
+
Compact text serialization of VERGIL state for the LLM.
|
| 52 |
+
|
| 53 |
+
Trimmed to ~60-70% of the previous size for faster training generations.
|
| 54 |
+
Removed: verbose decision-rules section (penalties are *learned* via
|
| 55 |
+
the reward, not described in the prompt) and the over-prescriptive
|
| 56 |
+
chain-of-thought scaffold (we still allow <think>; we just don't
|
| 57 |
+
spend tokens on a 5-step recipe). Kept: state, pending list with
|
| 58 |
+
explicit valid node_ids, accepted list, trust scores, JSON schema.
|
| 59 |
"""
|
| 60 |
nodes = state.cdg_nodes
|
| 61 |
pending = [n for n in nodes if n.status == CommitmentStatus.PENDING]
|
|
|
|
| 64 |
trust_entries = state.trust_entries
|
| 65 |
md_trust = getattr(env, 'multidim_trust', {})
|
| 66 |
|
|
|
|
| 67 |
total_committed = sum(n.estimated_duration_hours for n in accepted)
|
| 68 |
available = getattr(state, 'available_hours_next_48h', 8.0)
|
| 69 |
+
remaining = max(0.0, available - total_committed)
|
| 70 |
|
| 71 |
+
lines: List[str] = []
|
| 72 |
+
lines.append("You are VERGIL, an AI commitment manager. Decide ONE action.")
|
| 73 |
+
lines.append("")
|
| 74 |
+
lines.append(f"STATE: step={state.step_number} sat={state.satisfiability_score:.2f} "
|
| 75 |
+
f"load={state.cognitive_load:.2f} cap={remaining:.1f}/{available:.1f}h "
|
| 76 |
+
f"committed={total_committed:.1f}h")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
|
| 78 |
if pending:
|
| 79 |
+
valid_ids = ", ".join(n.node_id for n in pending)
|
| 80 |
+
lines.append(f"PENDING (valid `target` ids: [{valid_ids}]):")
|
| 81 |
for n in pending:
|
| 82 |
+
d = n.deadline.strftime('%m-%d %H:%M') if n.deadline else 'none'
|
| 83 |
+
lines.append(f" {n.node_id} | {n.label[:48]} | {n.estimated_duration_hours}h "
|
| 84 |
+
f"| due {d} | urg {n.urgency:.0%} | from {n.stakeholder_id}")
|
|
|
|
|
|
|
|
|
|
| 85 |
|
| 86 |
if accepted:
|
| 87 |
+
lines.append("ACCEPTED:")
|
| 88 |
for n in accepted:
|
| 89 |
+
d = n.deadline.strftime('%m-%d %H:%M') if n.deadline else 'none'
|
| 90 |
+
lines.append(f" {n.node_id} | {n.label[:48]} | {n.estimated_duration_hours}h | due {d}")
|
| 91 |
+
|
| 92 |
+
if trust_entries:
|
| 93 |
+
trust_bits = []
|
| 94 |
+
for sid, te in trust_entries.items():
|
| 95 |
+
md = md_trust.get(sid)
|
| 96 |
+
tval = md.composite_trust if md else te.trust_score
|
| 97 |
+
tag = "CRIT" if tval < 0.35 else ("LOW" if tval < 0.55 else "OK")
|
| 98 |
+
trust_bits.append(f"{sid}={tval:.2f}{tag}")
|
| 99 |
+
lines.append("TRUST: " + " ".join(trust_bits))
|
| 100 |
+
|
| 101 |
+
lines.append("")
|
| 102 |
+
lines.append("Output ONLY JSON. `target` MUST be a pending node_id above (NOT a")
|
| 103 |
+
lines.append("stakeholder id like client_02). `target` MUST be null for do_nothing.")
|
| 104 |
+
lines.append('{"action":"accept|decline|counter_propose|do_nothing",'
|
| 105 |
+
'"target":"<node_id or null>","reasoning":"<≤20 words>"}')
|
| 106 |
+
|
| 107 |
+
return "\n".join(lines)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
|
| 109 |
|
| 110 |
def parse_llm_output(text: str, pending_nodes: List) -> tuple:
|
| 111 |
+
"""
|
| 112 |
+
Parse LLM output text into (action_type, target_node_id).
|
| 113 |
+
|
| 114 |
+
Always returns an action that is *guaranteed valid* against the current
|
| 115 |
+
pending set, so the environment never hits its 'target node not found'
|
| 116 |
+
rejection path (which would freeze time and put the rollout in an
|
| 117 |
+
infinite same-state loop under greedy decoding).
|
| 118 |
+
|
| 119 |
+
Rules:
|
| 120 |
+
• DO_NOTHING / no-pending → target = None
|
| 121 |
+
• ACCEPT / DECLINE / COUNTER_PROPOSE without a valid pending target
|
| 122 |
+
→ fall back to first pending node, or downgrade to DO_NOTHING if
|
| 123 |
+
there are no pending nodes at all.
|
| 124 |
+
• Any 'target' the LLM emits that doesn't match a pending node id
|
| 125 |
+
(e.g. it confuses stakeholder ids like 'client_02' for node ids)
|
| 126 |
+
is replaced with the first pending node id.
|
| 127 |
+
"""
|
| 128 |
+
text_raw = text.strip()
|
| 129 |
+
text_l = text_raw.lower()
|
| 130 |
+
pending_ids = {n.node_id for n in pending_nodes}
|
| 131 |
+
pending_ids_lower = {nid.lower(): nid for nid in pending_ids}
|
| 132 |
+
first_pending = pending_nodes[0].node_id if pending_nodes else None
|
| 133 |
+
|
| 134 |
+
action_type = ActionType.DO_NOTHING
|
| 135 |
+
target = None
|
| 136 |
|
| 137 |
+
# Try JSON parse on the *raw* text (preserve case for node ids)
|
| 138 |
+
parsed_ok = False
|
| 139 |
try:
|
| 140 |
import json as _json
|
| 141 |
+
start = text_raw.find('{')
|
| 142 |
+
end = text_raw.rfind('}') + 1
|
|
|
|
| 143 |
if start >= 0 and end > start:
|
| 144 |
+
data = _json.loads(text_raw[start:end])
|
| 145 |
+
action_str = str(data.get('action', 'do_nothing')).strip().lower()
|
| 146 |
+
raw_target = data.get('target', None)
|
| 147 |
+
if isinstance(raw_target, str):
|
| 148 |
+
raw_target = raw_target.strip()
|
| 149 |
+
if raw_target.lower() in ('null', 'none', ''):
|
| 150 |
+
raw_target = None
|
| 151 |
|
| 152 |
action_map = {
|
| 153 |
'accept': ActionType.ACCEPT,
|
|
|
|
| 158 |
'wait': ActionType.DO_NOTHING,
|
| 159 |
}
|
| 160 |
action_type = action_map.get(action_str, ActionType.DO_NOTHING)
|
| 161 |
+
target = raw_target
|
| 162 |
+
parsed_ok = True
|
| 163 |
+
except Exception:
|
| 164 |
+
parsed_ok = False
|
| 165 |
+
|
| 166 |
+
if not parsed_ok:
|
| 167 |
+
# Fallback: keyword detection on the lowercased text
|
| 168 |
+
if 'accept' in text_l:
|
| 169 |
+
action_type = ActionType.ACCEPT
|
| 170 |
+
elif 'decline' in text_l:
|
| 171 |
+
action_type = ActionType.DECLINE
|
| 172 |
+
elif 'counter' in text_l:
|
| 173 |
+
action_type = ActionType.COUNTER_PROPOSE
|
| 174 |
+
else:
|
| 175 |
+
action_type = ActionType.DO_NOTHING
|
| 176 |
+
target = None
|
| 177 |
|
| 178 |
+
# ── Coerce to a guaranteed-valid (action_type, target) pair ──────────
|
| 179 |
+
needs_target = action_type in (
|
| 180 |
+
ActionType.ACCEPT, ActionType.DECLINE, ActionType.COUNTER_PROPOSE
|
| 181 |
+
)
|
| 182 |
+
|
| 183 |
+
if needs_target:
|
| 184 |
+
if not pending_nodes:
|
| 185 |
+
action_type = ActionType.DO_NOTHING
|
| 186 |
+
target = None
|
| 187 |
+
else:
|
| 188 |
+
# Case-insensitive match so 'p3' still maps to 'P3'
|
| 189 |
+
if isinstance(target, str) and target.lower() in pending_ids_lower:
|
| 190 |
+
target = pending_ids_lower[target.lower()]
|
| 191 |
+
else:
|
| 192 |
+
# LLM hallucinated a target (commonly a stakeholder id like
|
| 193 |
+
# 'client_02' instead of a pending node id like 'P1').
|
| 194 |
+
target = first_pending
|
| 195 |
else:
|
| 196 |
+
# DO_NOTHING never carries a target — clearing it prevents the
|
| 197 |
+
# env's 'target node not found' rejection.
|
| 198 |
+
target = None
|
| 199 |
+
|
| 200 |
+
return action_type, target
|
| 201 |
|
| 202 |
|
| 203 |
# ═══════════════════════════════════════════════════════════════════════════
|
|
|
|
| 254 |
pomdp.current_belief = copy.deepcopy(snapshot['belief'])
|
| 255 |
|
| 256 |
|
| 257 |
+
def _format_bonus(completion: str) -> float:
|
| 258 |
+
"""
|
| 259 |
+
Lightweight format-quality bonus, independent of the env reward.
|
| 260 |
+
Splitting this out keeps the main reward path readable AND lets us
|
| 261 |
+
use it as a separate reward function (judges value multiple
|
| 262 |
+
independent reward signals — see hackathon guide §7).
|
| 263 |
+
"""
|
| 264 |
+
has_json = '{' in completion and '}' in completion
|
| 265 |
+
has_required_keys = False
|
| 266 |
+
try:
|
| 267 |
+
import json as _j
|
| 268 |
+
s = completion.find('{')
|
| 269 |
+
e = completion.rfind('}') + 1
|
| 270 |
+
if s >= 0 and e > s:
|
| 271 |
+
parsed = _j.loads(completion[s:e])
|
| 272 |
+
has_required_keys = all(k in parsed for k in ('action', 'target', 'reasoning'))
|
| 273 |
+
except Exception:
|
| 274 |
+
has_required_keys = False
|
| 275 |
+
|
| 276 |
+
has_think_block = '<think>' in completion and '</think>' in completion
|
| 277 |
+
|
| 278 |
+
bonus = 0.0
|
| 279 |
+
if has_json and has_required_keys:
|
| 280 |
+
bonus += 0.03
|
| 281 |
+
elif has_json:
|
| 282 |
+
bonus += 0.01
|
| 283 |
+
else:
|
| 284 |
+
bonus -= 0.05
|
| 285 |
+
if has_think_block:
|
| 286 |
+
bonus += 0.02
|
| 287 |
+
return bonus
|
| 288 |
+
|
| 289 |
+
|
| 290 |
def vergil_reward_function(prompts, completions, **kwargs) -> list:
|
| 291 |
"""
|
| 292 |
Reward function for TRL's GRPOTrainer.
|
| 293 |
|
| 294 |
+
Critical correctness fix: each training prompt was *generated from*
|
| 295 |
+
a specific env state, but the live env state at reward-evaluation
|
| 296 |
+
time has nothing to do with that. Without a fix, GRPO would score
|
| 297 |
+
completions against an arbitrary state — completely decoupling the
|
| 298 |
+
learning signal from what the prompt actually described.
|
| 299 |
+
|
| 300 |
+
We solve this by passing a per-prompt env snapshot via the dataset.
|
| 301 |
+
The dataset row carries an integer 'snapshot_idx' that points into
|
| 302 |
+
the kwarg 'snapshots' list. For every completion we restore THAT
|
| 303 |
+
snapshot, not whatever env._state happens to be.
|
| 304 |
+
|
| 305 |
+
Backwards compatible: if 'snapshots' / 'snapshot_idx' are not
|
| 306 |
+
provided, we fall back to the old group-snapshot behavior so the
|
| 307 |
+
function still runs (just less accurate).
|
| 308 |
|
| 309 |
+
Returns env-step reward + format bonus per completion.
|
|
|
|
|
|
|
|
|
|
| 310 |
"""
|
| 311 |
rewards = []
|
| 312 |
env = kwargs.get('env')
|
| 313 |
pomdp = kwargs.get('pomdp')
|
| 314 |
num_generations = kwargs.get('num_generations', 4)
|
| 315 |
+
snapshots = kwargs.get('snapshots') # list[dict] | None
|
| 316 |
+
snapshot_idx = kwargs.get('snapshot_idx') # list[int] aligned to prompts | None
|
| 317 |
+
|
| 318 |
+
# ── Aligned path: restore the exact snapshot the prompt was built from
|
| 319 |
+
if snapshots is not None and snapshot_idx is not None:
|
| 320 |
+
for i, (prompt, completion) in enumerate(zip(prompts, completions)):
|
| 321 |
+
try:
|
| 322 |
+
idx = int(snapshot_idx[i])
|
| 323 |
+
snap = snapshots[idx]
|
| 324 |
+
_restore_env(env, pomdp, snap)
|
| 325 |
+
rewards.append(_score_completion(env, pomdp, completion))
|
| 326 |
+
except Exception:
|
| 327 |
+
rewards.append(-0.10)
|
| 328 |
+
return rewards
|
| 329 |
|
| 330 |
+
# ── Fallback path: old group-snapshot behavior (less accurate)
|
| 331 |
for group_start in range(0, len(prompts), num_generations):
|
|
|
|
| 332 |
group_completions = completions[group_start:group_start + num_generations]
|
|
|
|
|
|
|
| 333 |
snapshot = _snapshot_env(env, pomdp)
|
| 334 |
+
for completion in group_completions:
|
|
|
|
|
|
|
| 335 |
_restore_env(env, pomdp, snapshot)
|
|
|
|
| 336 |
try:
|
| 337 |
+
rewards.append(_score_completion(env, pomdp, completion))
|
| 338 |
+
except Exception:
|
| 339 |
+
rewards.append(-0.10)
|
| 340 |
+
return rewards
|
|
|
|
|
|
|
|
|
|
| 341 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 342 |
|
| 343 |
+
def _score_completion(env, pomdp, completion: str) -> float:
|
| 344 |
+
"""
|
| 345 |
+
Pure env-reward score for a single completion against the *currently
|
| 346 |
+
restored* env state. Returns the env step reward only — format
|
| 347 |
+
quality is supplied by a separate independent reward function so
|
| 348 |
+
GRPO sees two uncorrelated signals (harder to reward-hack).
|
| 349 |
+
"""
|
| 350 |
+
state = env._state
|
| 351 |
+
if state is None:
|
| 352 |
+
return 0.0
|
| 353 |
|
| 354 |
+
pending = [n for n in state.cdg_nodes
|
| 355 |
+
if n.status == CommitmentStatus.PENDING]
|
|
|
|
| 356 |
|
| 357 |
+
# parse_llm_output already coerces to a valid pending target or DO_NOTHING
|
| 358 |
+
action_type, target = parse_llm_output(completion, pending)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 359 |
|
| 360 |
+
# Feasibility prediction = capacity check
|
| 361 |
+
available = getattr(state, 'available_hours_next_48h', 8.0)
|
| 362 |
+
committed = sum(n.estimated_duration_hours for n in state.cdg_nodes
|
| 363 |
+
if n.status == CommitmentStatus.ACCEPTED)
|
| 364 |
+
target_node = next((n for n in state.cdg_nodes if n.node_id == target), None)
|
| 365 |
+
new_cost = target_node.estimated_duration_hours if target_node else 0.0
|
| 366 |
+
feasibility_pred = float(committed + new_cost <= available)
|
| 367 |
+
|
| 368 |
+
action = AgentAction(
|
| 369 |
+
action_type=action_type,
|
| 370 |
+
target_node_id=target,
|
| 371 |
+
feasibility_prediction=feasibility_pred,
|
| 372 |
+
)
|
| 373 |
+
if action_type == ActionType.COUNTER_PROPOSE and target_node:
|
| 374 |
+
action.proposed_deadline = state.current_time + timedelta(
|
| 375 |
+
hours=target_node.estimated_duration_hours * 1.5)
|
| 376 |
|
| 377 |
+
simulate_task_progress(env)
|
| 378 |
+
_new_state, _belief, env_reward, _term, _trunc, _info = pomdp.step(action)
|
| 379 |
+
simulate_task_progress(env)
|
| 380 |
|
| 381 |
+
return float(env_reward)
|
| 382 |
|
| 383 |
|
| 384 |
# ═══════════════════════════════════════════════════════════════════════════
|
|
|
|
| 390 |
Main GRPO training function.
|
| 391 |
Run this on a GPU-enabled Colab/Kaggle notebook.
|
| 392 |
"""
|
| 393 |
+
# ── Hardware-aware defaults ───────────────────────────────────────────
|
| 394 |
+
# Override anything below via env vars. Sensible L40S/A100 defaults:
|
| 395 |
+
# MODEL_NAME=unsloth/Qwen2.5-1.5B-Instruct (3× capacity vs 0.5B)
|
| 396 |
+
# LORA_R=64 LORA_ALPHA=128
|
| 397 |
+
# On a smaller GPU (T4-16GB) override with:
|
| 398 |
+
# MODEL_NAME=unsloth/Qwen2.5-0.5B-Instruct LORA_R=32
|
| 399 |
+
MODEL_NAME = os.getenv("MODEL_NAME", "unsloth/Qwen2.5-1.5B-Instruct")
|
| 400 |
+
MAX_SEQ_LENGTH = int(os.getenv("MAX_SEQ_LENGTH", "2048"))
|
| 401 |
+
LORA_R = int(os.getenv("LORA_R", "64"))
|
| 402 |
+
LORA_ALPHA = int(os.getenv("LORA_ALPHA", "128"))
|
| 403 |
+
LOAD_IN_4BIT = os.getenv("LOAD_IN_4BIT", "1") == "1"
|
| 404 |
+
|
| 405 |
print("╔══════════════════════════════════════════════════╗")
|
| 406 |
print("║ VERGIL GRPO Training — LLM Fine-Tuning ║")
|
| 407 |
print("╠══════════════════════════════════════════════════╣")
|
| 408 |
+
print(f"║ Model : {MODEL_NAME[:34]:<34s} ║")
|
| 409 |
+
print(f"║ Quantize : {'4-bit (Unsloth)' if LOAD_IN_4BIT else '16-bit (full)':<34s} ║")
|
| 410 |
+
print(f"║ LoRA : r={LORA_R}, alpha={LORA_ALPHA:<23d}║")
|
| 411 |
+
print("║ Algorithm : Group Relative Policy Optimization ║")
|
| 412 |
print("║ Environment: VERGIL CDG Engine ║")
|
| 413 |
print("╚══════════════════════════════════════════════════╝")
|
| 414 |
|
|
|
|
| 417 |
from unsloth import FastLanguageModel
|
| 418 |
|
| 419 |
model, tokenizer = FastLanguageModel.from_pretrained(
|
| 420 |
+
model_name=MODEL_NAME,
|
| 421 |
+
max_seq_length=MAX_SEQ_LENGTH,
|
| 422 |
+
load_in_4bit=LOAD_IN_4BIT,
|
| 423 |
dtype=None, # Auto-detect
|
| 424 |
)
|
| 425 |
|
| 426 |
# Add LoRA adapters — rank=64 for richer commitment reasoning capacity
|
| 427 |
model = FastLanguageModel.get_peft_model(
|
| 428 |
model,
|
| 429 |
+
r=LORA_R,
|
| 430 |
target_modules=["q_proj", "k_proj", "v_proj", "o_proj",
|
| 431 |
"gate_proj", "up_proj", "down_proj"],
|
| 432 |
+
lora_alpha=LORA_ALPHA,
|
| 433 |
lora_dropout=0,
|
| 434 |
bias="none",
|
| 435 |
use_gradient_checkpointing="unsloth",
|
|
|
|
| 452 |
)
|
| 453 |
print(" Environment ready.")
|
| 454 |
|
| 455 |
+
# ── Step 3: Generate Training Prompts + per-prompt env snapshots ──────
|
| 456 |
+
# Each prompt is paired with the EXACT env state it was generated from.
|
| 457 |
+
# The reward function later restores that snapshot before scoring each
|
| 458 |
+
# completion, so the LLM's decision is judged against the state the
|
| 459 |
+
# prompt described — not whatever the env happened to be in.
|
| 460 |
print("\n📝 Generating training prompts across curriculum stages...")
|
| 461 |
+
training_prompts: List[str] = []
|
| 462 |
+
training_snapshots: List[dict] = []
|
| 463 |
+
|
| 464 |
+
# Override prompt count via env var so smoke tests can use a tiny set.
|
| 465 |
+
# Default: 200 episodes spread across stages 1→4 (≈400-1600 prompts
|
| 466 |
+
# depending on episode length) — enough state diversity for 60 GRPO
|
| 467 |
+
# steps with batch 2 × num_gen 8 = 16 completions/step.
|
| 468 |
+
PROMPT_BUDGET = int(os.getenv('PROMPT_BUDGET', '0')) # 0 = use defaults
|
| 469 |
+
if PROMPT_BUDGET > 0:
|
| 470 |
+
# Distribute prompts roughly proportional to the default ratio
|
| 471 |
+
STAGE_EPISODES = {
|
| 472 |
+
1: max(1, PROMPT_BUDGET // 8),
|
| 473 |
+
2: max(1, (PROMPT_BUDGET * 3) // 16),
|
| 474 |
+
3: max(1, (PROMPT_BUDGET * 5) // 16),
|
| 475 |
+
4: max(1, (PROMPT_BUDGET * 6) // 16),
|
| 476 |
+
}
|
| 477 |
+
else:
|
| 478 |
+
STAGE_EPISODES = {1: 25, 2: 40, 3: 60, 4: 75} # Total: 200 episodes
|
| 479 |
|
| 480 |
for stage, n_episodes in STAGE_EPISODES.items():
|
| 481 |
print(f" Stage {stage}: generating {n_episodes} episodes...")
|
|
|
|
| 488 |
|
| 489 |
for j in range(min(8, env._max_steps)):
|
| 490 |
simulate_task_progress(env)
|
| 491 |
+
|
| 492 |
+
# Capture (prompt, state-snapshot) AS A PAIR before stepping
|
| 493 |
+
training_prompts.append(state_to_prompt(state, env))
|
| 494 |
+
training_snapshots.append(_snapshot_env(env, pomdp))
|
| 495 |
|
| 496 |
pending = [n for n in state.cdg_nodes
|
| 497 |
if n.status == CommitmentStatus.PENDING]
|
|
|
|
| 516 |
if term or trunc:
|
| 517 |
break
|
| 518 |
|
| 519 |
+
# Shuffle prompts AND keep their snapshot index aligned
|
| 520 |
+
perm = np.random.permutation(len(training_prompts))
|
| 521 |
+
training_prompts = [training_prompts[i] for i in perm]
|
| 522 |
+
training_snapshots = [training_snapshots[i] for i in perm]
|
| 523 |
+
print(f" Generated {len(training_prompts)} (prompt, snapshot) pairs (shuffled)")
|
| 524 |
|
| 525 |
# ── Step 4: GRPO Training ─────────────────────────────────────────────
|
| 526 |
print("\n🚀 Starting GRPO training...")
|
| 527 |
|
| 528 |
from trl import GRPOConfig, GRPOTrainer
|
| 529 |
|
| 530 |
+
# ── Hardware-aware training config ─────────────────────────────────────
|
| 531 |
+
# Defaults tuned for L40S (48 GB VRAM, ~91 TFLOPS). Cuts training time
|
| 532 |
+
# from ~75 min on T4 to ~25-35 min on L40S while training a 3× bigger
|
| 533 |
+
# model with 2× larger GRPO groups for tighter advantage estimates.
|
| 534 |
+
#
|
| 535 |
+
# If running on T4 (16 GB), set:
|
| 536 |
+
# PER_DEVICE_BATCH=1 NUM_GENERATIONS=4 MAX_COMPLETION_LEN=128
|
| 537 |
+
NUM_GENERATIONS = int(os.getenv('NUM_GENERATIONS', '8'))
|
| 538 |
+
MAX_STEPS = int(os.getenv('MAX_STEPS', '60'))
|
| 539 |
+
MAX_COMPLETION_LEN = int(os.getenv('MAX_COMPLETION_LEN', '192'))
|
| 540 |
+
PER_DEVICE_BATCH = int(os.getenv('PER_DEVICE_BATCH', '2'))
|
| 541 |
+
GRAD_ACCUM = int(os.getenv('GRAD_ACCUM', '2'))
|
| 542 |
+
LEARNING_RATE = float(os.getenv('LR', '2e-5'))
|
| 543 |
|
| 544 |
training_config = GRPOConfig(
|
| 545 |
output_dir="/tmp/vergil_grpo_output",
|
| 546 |
num_train_epochs=1,
|
| 547 |
+
max_steps=MAX_STEPS, # 60 by default (was 30)
|
| 548 |
+
per_device_train_batch_size=PER_DEVICE_BATCH, # 2 by default (was 1)
|
| 549 |
+
gradient_accumulation_steps=GRAD_ACCUM, # effective batch = 4
|
| 550 |
+
learning_rate=LEARNING_RATE,
|
| 551 |
+
max_completion_length=MAX_COMPLETION_LEN, # 192 by default
|
| 552 |
+
num_generations=NUM_GENERATIONS, # 8 by default (was 4)
|
| 553 |
logging_steps=5,
|
| 554 |
+
save_steps=max(MAX_STEPS, 1), # avoid mid-train saves on tiny runs
|
| 555 |
+
warmup_steps=min(10, MAX_STEPS // 3),
|
| 556 |
report_to="none",
|
| 557 |
temperature=0.9,
|
| 558 |
top_p=0.95,
|
| 559 |
+
bf16=True, # L40S has BF16 hardware
|
| 560 |
)
|
| 561 |
|
| 562 |
+
# Create dataset — each row carries an integer snapshot_idx so the
|
| 563 |
+
# reward function can restore the exact env state the prompt was
|
| 564 |
+
# generated from.
|
| 565 |
from datasets import Dataset
|
| 566 |
|
| 567 |
dataset = Dataset.from_dict({
|
| 568 |
+
"prompt": training_prompts,
|
| 569 |
+
"snapshot_idx": list(range(len(training_prompts))),
|
| 570 |
})
|
| 571 |
|
| 572 |
validation_log = []
|
| 573 |
|
| 574 |
+
def reward_fn(prompts, completions, snapshot_idx=None, **kw):
|
| 575 |
+
"""
|
| 576 |
+
Wrapper for TRL's GRPOTrainer.
|
| 577 |
+
|
| 578 |
+
TRL passes any extra dataset columns as kwargs to the reward
|
| 579 |
+
function. We forward `snapshot_idx` (a list aligned with prompts)
|
| 580 |
+
so the per-prompt env state can be restored before scoring.
|
| 581 |
+
"""
|
| 582 |
return vergil_reward_function(
|
| 583 |
prompts, completions,
|
| 584 |
env=env, pomdp=pomdp,
|
| 585 |
num_generations=NUM_GENERATIONS,
|
| 586 |
+
snapshots=training_snapshots,
|
| 587 |
+
snapshot_idx=snapshot_idx,
|
| 588 |
)
|
| 589 |
|
| 590 |
+
def format_reward_fn(prompts, completions, **kw):
|
| 591 |
+
"""
|
| 592 |
+
Independent format-quality reward — judges value MULTIPLE
|
| 593 |
+
independent reward signals (hackathon guide §7) since they are
|
| 594 |
+
much harder for the model to game than a single monolithic score.
|
| 595 |
+
"""
|
| 596 |
+
return [_format_bonus(c) for c in completions]
|
| 597 |
+
|
| 598 |
trainer = GRPOTrainer(
|
| 599 |
model=model,
|
| 600 |
args=training_config,
|
| 601 |
train_dataset=dataset,
|
| 602 |
+
reward_funcs=[reward_fn, format_reward_fn],
|
| 603 |
processing_class=tokenizer,
|
| 604 |
)
|
| 605 |
|
| 606 |
+
# ── Preflight: smoke-test the reward signal before burning compute ────
|
| 607 |
+
# Hackathon guide §15+§21: "Picking a task so hard that success
|
| 608 |
+
# probability is zero" is the #1 mistake. Generate a few completions,
|
| 609 |
+
# score them, and abort if rewards are all identical (no learning
|
| 610 |
+
# signal) or all -0.10 (everything is crashing).
|
| 611 |
+
if os.getenv('SKIP_PREFLIGHT', '0') != '1':
|
| 612 |
+
print("\n🔬 Preflight: testing reward signal on 3 prompts × 2 generations...")
|
| 613 |
+
try:
|
| 614 |
+
FastLanguageModel.for_inference(model)
|
| 615 |
+
preflight_rewards = []
|
| 616 |
+
for pf_idx in range(min(3, len(training_prompts))):
|
| 617 |
+
pf_prompt = training_prompts[pf_idx]
|
| 618 |
+
pf_inp = tokenizer(pf_prompt, return_tensors="pt").to(model.device)
|
| 619 |
+
pf_completions = []
|
| 620 |
+
for _ in range(2):
|
| 621 |
+
pf_out = model.generate(
|
| 622 |
+
**pf_inp, max_new_tokens=MAX_COMPLETION_LEN,
|
| 623 |
+
do_sample=True, temperature=0.9, top_p=0.95,
|
| 624 |
+
pad_token_id=tokenizer.pad_token_id or tokenizer.eos_token_id,
|
| 625 |
+
)
|
| 626 |
+
pf_completions.append(tokenizer.decode(
|
| 627 |
+
pf_out[0][pf_inp.input_ids.shape[1]:], skip_special_tokens=True))
|
| 628 |
+
env_rewards = vergil_reward_function(
|
| 629 |
+
[pf_prompt] * 2, pf_completions,
|
| 630 |
+
env=env, pomdp=pomdp,
|
| 631 |
+
snapshots=training_snapshots,
|
| 632 |
+
snapshot_idx=[pf_idx, pf_idx],
|
| 633 |
+
)
|
| 634 |
+
fmt_rewards = [_format_bonus(c) for c in pf_completions]
|
| 635 |
+
for c, er, fr in zip(pf_completions, env_rewards, fmt_rewards):
|
| 636 |
+
preflight_rewards.append(er)
|
| 637 |
+
print(f" [pf {pf_idx}] env_reward={er:+.3f} fmt={fr:+.3f} "
|
| 638 |
+
f"completion={c[:80]!r}")
|
| 639 |
+
FastLanguageModel.for_training(model)
|
| 640 |
+
|
| 641 |
+
unique_rewards = len(set(round(r, 3) for r in preflight_rewards))
|
| 642 |
+
if unique_rewards <= 1:
|
| 643 |
+
print(f" ⚠️ Preflight WARNING: all {len(preflight_rewards)} rewards "
|
| 644 |
+
f"are identical → no learning signal. Check reward function.")
|
| 645 |
+
print(f" Set SKIP_PREFLIGHT=1 to bypass this check.")
|
| 646 |
+
if os.getenv('STRICT_PREFLIGHT', '0') == '1':
|
| 647 |
+
raise RuntimeError("Preflight failed: rewards lack variance")
|
| 648 |
+
else:
|
| 649 |
+
print(f" ✅ Preflight OK — {unique_rewards} unique reward values, "
|
| 650 |
+
f"range=[{min(preflight_rewards):+.3f}, {max(preflight_rewards):+.3f}]")
|
| 651 |
+
except Exception as e:
|
| 652 |
+
print(f" ⚠️ Preflight crashed: {type(e).__name__}: {e}")
|
| 653 |
+
if os.getenv('STRICT_PREFLIGHT', '0') == '1':
|
| 654 |
+
raise
|
| 655 |
+
|
| 656 |
# ── Validation Callback: Log progress every 50 steps ──────────────────
|
| 657 |
def run_validation(step_num: int):
|
| 658 |
"""Run 10 eval episodes and log average reward + fulfillment rate."""
|
|
|
|
| 669 |
p = state_to_prompt(vs, env)
|
| 670 |
inp = tokenizer(p, return_tensors="pt").to(model.device)
|
| 671 |
out = model.generate(
|
| 672 |
+
**inp,
|
| 673 |
+
max_new_tokens=350,
|
| 674 |
+
do_sample=False,
|
| 675 |
+
pad_token_id=tokenizer.pad_token_id or tokenizer.eos_token_id,
|
| 676 |
)
|
| 677 |
comp = tokenizer.decode(out[0][inp.input_ids.shape[1]:], skip_special_tokens=True)
|
| 678 |
pend = [n for n in vs.cdg_nodes if n.status == CommitmentStatus.PENDING]
|
| 679 |
at, tgt = parse_llm_output(comp, pend)
|
|
|
|
|
|
|
| 680 |
act = AgentAction(action_type=at, target_node_id=tgt)
|
| 681 |
vs, vb, r, done, trunc, _ = pomdp.step(act)
|
| 682 |
simulate_task_progress(env)
|
|
|
|
| 706 |
train_result = trainer.train()
|
| 707 |
elapsed = time.time() - start_time
|
| 708 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 709 |
print(f"\n✅ Training complete in {elapsed/60:.1f} minutes")
|
| 710 |
print(f" Final loss: {train_result.training_loss:.4f}")
|
| 711 |
|
| 712 |
+
# ═══════════════════════════════════════════════════════════════════════
|
| 713 |
+
# CRITICAL: Save + push BEFORE any evaluation.
|
| 714 |
+
#
|
| 715 |
+
# Earlier versions of this script ran the full eval (20 eps × 20 steps,
|
| 716 |
+
# each ~200-token generation on a 4-bit Qwen) BEFORE saving — which
|
| 717 |
+
# meant if the HF Space slept, the kernel disconnected, or eval hung,
|
| 718 |
+
# the trained LoRA adapter was lost forever. We persist first, then
|
| 719 |
+
# evaluate as a strictly best-effort step.
|
| 720 |
+
# ═══════════════════════════════════════════════════════════════════════
|
| 721 |
+
print("\n💾 Saving model (BEFORE eval — guarantees persistence)...")
|
| 722 |
+
model_dir = "/tmp/vergil_grpo_model"
|
| 723 |
+
model.save_pretrained(model_dir)
|
| 724 |
+
tokenizer.save_pretrained(model_dir)
|
| 725 |
+
print(f" ✅ Saved locally to {model_dir}")
|
| 726 |
+
|
| 727 |
+
# Persist validation curve so far (may be empty if we skipped run_validation)
|
| 728 |
+
try:
|
| 729 |
+
val_path = Path('/tmp/vergil_grpo_output/validation_log.json')
|
| 730 |
+
val_path.parent.mkdir(parents=True, exist_ok=True)
|
| 731 |
+
val_path.write_text(json.dumps(validation_log, indent=2))
|
| 732 |
+
except Exception as e:
|
| 733 |
+
print(f" ⚠️ Could not write validation log: {e}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 734 |
|
| 735 |
+
# ── Push to HuggingFace Hub immediately ────────────────────────────────
|
| 736 |
hf_token = os.getenv('HF_TOKEN')
|
| 737 |
+
repo_id = os.getenv('HF_REPO_ID', "Laksh718/vergil-commitment-engine")
|
| 738 |
+
push_succeeded = False
|
| 739 |
if hf_token:
|
| 740 |
print(f"\n🚀 Pushing model to HuggingFace Hub: {repo_id}")
|
| 741 |
try:
|
| 742 |
+
model.push_to_hub(
|
| 743 |
+
repo_id, token=hf_token,
|
| 744 |
+
commit_message=f"VERGIL GRPO — {training_config.max_steps} steps, "
|
| 745 |
+
f"loss={train_result.training_loss:.4f}",
|
| 746 |
+
)
|
| 747 |
tokenizer.push_to_hub(repo_id, token=hf_token)
|
| 748 |
+
push_succeeded = True
|
| 749 |
+
print(f" ✅ Model live at https://huggingface.co/{repo_id}")
|
| 750 |
+
except Exception as e:
|
| 751 |
+
print(f" ⚠️ HF push failed: {e}")
|
| 752 |
+
print(f" Model is safe locally at {model_dir}")
|
| 753 |
+
else:
|
| 754 |
+
print("\n⚠️ No HF_TOKEN env var — model saved locally only")
|
| 755 |
+
print(f" To push later: model.push_to_hub('{repo_id}', token='your_token')")
|
| 756 |
+
|
| 757 |
+
# ═══════════════════════════════════════════════════════════════════════
|
| 758 |
+
# Post-training evaluation — STRICTLY OPTIONAL, time-bounded.
|
| 759 |
+
# Controlled by env vars so you can disable on slow / sleepy Spaces:
|
| 760 |
+
# SKIP_EVAL=1 → skip evaluation entirely
|
| 761 |
+
# EVAL_EPISODES=N → number of eval episodes (default 5)
|
| 762 |
+
# EVAL_TIMEOUT_SEC=S → wallclock cap on the eval loop (default 180)
|
| 763 |
+
# ═══════════════════════════════════════════════════════════════════════
|
| 764 |
+
SKIP_EVAL = os.getenv('SKIP_EVAL', '0') == '1'
|
| 765 |
+
EVAL_EPISODES = int(os.getenv('EVAL_EPISODES', '5'))
|
| 766 |
+
EVAL_TIMEOUT_SEC = int(os.getenv('EVAL_TIMEOUT_SEC', '180'))
|
| 767 |
+
|
| 768 |
+
eval_rewards: List[float] = []
|
| 769 |
+
eval_fulfillments: List[float] = []
|
| 770 |
+
|
| 771 |
+
if SKIP_EVAL:
|
| 772 |
+
print("\n⏭ SKIP_EVAL=1 — skipping post-training evaluation")
|
| 773 |
+
else:
|
| 774 |
+
print(f"\n📊 Evaluating trained model "
|
| 775 |
+
f"(≤{EVAL_EPISODES} eps, ≤{EVAL_TIMEOUT_SEC}s budget)...")
|
| 776 |
+
try:
|
| 777 |
+
FastLanguageModel.for_inference(model)
|
| 778 |
+
eval_start = time.time()
|
| 779 |
+
|
| 780 |
+
for i in range(EVAL_EPISODES):
|
| 781 |
+
if time.time() - eval_start > EVAL_TIMEOUT_SEC:
|
| 782 |
+
print(f" ⏱ Time budget reached after {i} episodes — stopping early")
|
| 783 |
+
break
|
| 784 |
|
| 785 |
+
env.curriculum_stage = 1
|
| 786 |
+
scenario = curriculum.generate_next_episode()
|
| 787 |
+
state, belief, info = pomdp.reset(scenario=scenario)
|
| 788 |
+
|
| 789 |
+
episode_reward = 0.0
|
| 790 |
+
for step in range(env._max_steps):
|
| 791 |
+
simulate_task_progress(env)
|
| 792 |
+
prompt = state_to_prompt(state, env)
|
| 793 |
+
|
| 794 |
+
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
| 795 |
+
outputs = model.generate(
|
| 796 |
+
**inputs,
|
| 797 |
+
max_new_tokens=128, # shorter → ~2× faster
|
| 798 |
+
do_sample=False, # greedy → deterministic + faster
|
| 799 |
+
pad_token_id=tokenizer.pad_token_id or tokenizer.eos_token_id,
|
| 800 |
+
)
|
| 801 |
+
completion = tokenizer.decode(
|
| 802 |
+
outputs[0][inputs.input_ids.shape[1]:],
|
| 803 |
+
skip_special_tokens=True,
|
| 804 |
+
)
|
| 805 |
+
|
| 806 |
+
pending = [n for n in state.cdg_nodes
|
| 807 |
+
if n.status == CommitmentStatus.PENDING]
|
| 808 |
+
# parse_llm_output coerces to a valid (action, target) pair
|
| 809 |
+
action_type, target = parse_llm_output(completion, pending)
|
| 810 |
+
|
| 811 |
+
action = AgentAction(
|
| 812 |
+
action_type=action_type,
|
| 813 |
+
target_node_id=target,
|
| 814 |
+
)
|
| 815 |
+
|
| 816 |
+
state, belief, reward, term, trunc, step_info = pomdp.step(action)
|
| 817 |
+
simulate_task_progress(env)
|
| 818 |
+
episode_reward += reward
|
| 819 |
+
|
| 820 |
+
if term or trunc:
|
| 821 |
+
break
|
| 822 |
+
|
| 823 |
+
n_completed = sum(1 for n in state.cdg_nodes
|
| 824 |
+
if n.status == CommitmentStatus.COMPLETED)
|
| 825 |
+
n_accepted = sum(1 for n in state.cdg_nodes if n.status in
|
| 826 |
+
(CommitmentStatus.ACCEPTED, CommitmentStatus.COMPLETED))
|
| 827 |
+
eval_fulfillments.append(n_completed / max(1, n_accepted))
|
| 828 |
+
eval_rewards.append(episode_reward)
|
| 829 |
+
print(f" ep {i+1}/{EVAL_EPISODES}: reward={episode_reward:+.3f} "
|
| 830 |
+
f"fulfillment={eval_fulfillments[-1]:.1%}")
|
| 831 |
+
|
| 832 |
+
if eval_rewards:
|
| 833 |
+
print(f"\n Mean reward: {np.mean(eval_rewards):+.3f}")
|
| 834 |
+
print(f" Mean fulfillment: {np.mean(eval_fulfillments):.1%}")
|
| 835 |
+
except Exception as e:
|
| 836 |
+
print(f" ⚠️ Eval failed (model already saved): {type(e).__name__}: {e}")
|
| 837 |
+
|
| 838 |
+
# ── Upload validation log to Hub (best-effort) ───────��─────────────────
|
| 839 |
+
if hf_token and push_succeeded:
|
| 840 |
+
try:
|
| 841 |
vp = Path('/tmp/vergil_grpo_output/validation_log.json')
|
| 842 |
if vp.exists():
|
| 843 |
from huggingface_hub import HfApi
|
|
|
|
| 848 |
token=hf_token,
|
| 849 |
commit_message="Add validation log",
|
| 850 |
)
|
|
|
|
| 851 |
except Exception as e:
|
| 852 |
+
print(f" ⚠️ Validation-log upload failed: {e}")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 853 |
|
| 854 |
print("\n═══════════════════════════════════════════════════════")
|
| 855 |
print(" GRPO TRAINING COMPLETE")
|
| 856 |
+
print(f" Model saved to: {model_dir}")
|
| 857 |
+
print(f" Pushed to Hub: {push_succeeded} ({repo_id})")
|
| 858 |
+
print(f" Training time: {elapsed/60:.1f} minutes")
|
| 859 |
+
if eval_rewards:
|
| 860 |
+
print(f" Eval reward: {np.mean(eval_rewards):+.3f} "
|
| 861 |
+
f"(over {len(eval_rewards)} eps)")
|
| 862 |
+
else:
|
| 863 |
+
print(f" Eval: skipped or empty")
|
| 864 |
print("═══════════════════════════════════════════════════════")
|
| 865 |
|
| 866 |
|
|
@@ -1,23 +0,0 @@
|
|
| 1 |
-
FROM pytorch/pytorch:2.3.0-cuda12.1-cudnn8-devel
|
| 2 |
-
|
| 3 |
-
RUN useradd -m -u 1000 user
|
| 4 |
-
USER user
|
| 5 |
-
ENV HOME=/home/user \
|
| 6 |
-
PATH=/home/user/.local/bin:$PATH \
|
| 7 |
-
CUDA_HOME=/usr/local/cuda
|
| 8 |
-
|
| 9 |
-
WORKDIR $HOME/app
|
| 10 |
-
|
| 11 |
-
USER root
|
| 12 |
-
RUN apt-get update && apt-get install -y git curl build-essential && rm -rf /var/lib/apt/lists/*
|
| 13 |
-
USER user
|
| 14 |
-
|
| 15 |
-
COPY --chown=user . $HOME/app
|
| 16 |
-
|
| 17 |
-
RUN pip install --upgrade pip
|
| 18 |
-
# Force strict synchronization of PyTorch and Torchvision directly from NVIDIA's servers
|
| 19 |
-
RUN pip install "torch==2.3.1" "torchvision==0.18.1" --index-url https://download.pytorch.org/whl/cu121
|
| 20 |
-
# Install all required modules in one robust resolution block
|
| 21 |
-
RUN pip install "unsloth" "xformers==0.0.27" "trl" "peft" "accelerate" "bitsandbytes" "gymnasium" "networkx" "scipy" "datasets" "gradio" "huggingface_hub"
|
| 22 |
-
|
| 23 |
-
CMD ["python", "app.py"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -255,7 +255,9 @@ async def reset_scenario(request: ResetRequest):
|
|
| 255 |
"info": info,
|
| 256 |
}
|
| 257 |
except Exception as e:
|
| 258 |
-
|
|
|
|
|
|
|
| 259 |
|
| 260 |
|
| 261 |
@app.post("/api/step")
|
|
@@ -458,10 +460,20 @@ async def compare_agents(request: CompareRequest):
|
|
| 458 |
}
|
| 459 |
|
| 460 |
naive_result = _run_agent(lambda s, e: _naive_decide(s), "Naive (Accept-All)")
|
| 461 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 462 |
|
| 463 |
return {
|
| 464 |
"scenario_id": scenario.get('scenario_id', 'unknown'),
|
|
|
|
| 465 |
"naive": naive_result,
|
| 466 |
"vergil": vergil_result,
|
| 467 |
"comparison": {
|
|
|
|
| 255 |
"info": info,
|
| 256 |
}
|
| 257 |
except Exception as e:
|
| 258 |
+
import traceback
|
| 259 |
+
traceback.print_exc()
|
| 260 |
+
raise HTTPException(status_code=400, detail=f"Reset Error: {str(e)}")
|
| 261 |
|
| 262 |
|
| 263 |
@app.post("/api/step")
|
|
|
|
| 460 |
}
|
| 461 |
|
| 462 |
naive_result = _run_agent(lambda s, e: _naive_decide(s), "Naive (Accept-All)")
|
| 463 |
+
|
| 464 |
+
# Use the trained LLM if it's loaded; otherwise fall back to the
|
| 465 |
+
# capacity-aware heuristic. The label reflects which one ran.
|
| 466 |
+
if _llm_model is not None:
|
| 467 |
+
vergil_label = "VERGIL-Trained (LLM)"
|
| 468 |
+
vergil_agent = _llm_decide
|
| 469 |
+
else:
|
| 470 |
+
vergil_label = "VERGIL Heuristic (LLM not loaded)"
|
| 471 |
+
vergil_agent = _heuristic_decide
|
| 472 |
+
vergil_result = _run_agent(vergil_agent, vergil_label)
|
| 473 |
|
| 474 |
return {
|
| 475 |
"scenario_id": scenario.get('scenario_id', 'unknown'),
|
| 476 |
+
"llm_loaded": _llm_model is not None,
|
| 477 |
"naive": naive_result,
|
| 478 |
"vergil": vergil_result,
|
| 479 |
"comparison": {
|
|
@@ -466,12 +466,20 @@ class VERGILEnv(gym.Env):
|
|
| 466 |
def _validate_action(self, action: AgentAction,
|
| 467 |
state: VERGILState) -> Tuple[bool, str]:
|
| 468 |
"""Check if action is legal given current state."""
|
| 469 |
-
|
| 470 |
-
|
|
|
|
|
|
|
|
|
|
| 471 |
if action.target_node_id is None and action.target_message_id is None:
|
| 472 |
return False, "Action requires a target commitment or message"
|
| 473 |
|
| 474 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 475 |
node = self.cdg.get_node(action.target_node_id)
|
| 476 |
if node is None:
|
| 477 |
return False, f"Target node {action.target_node_id} not found"
|
|
@@ -688,14 +696,27 @@ class VERGILEnv(gym.Env):
|
|
| 688 |
|
| 689 |
def _build_stakeholder_profiles(self, scenario: Dict) -> Dict[str, StakeholderProfile]:
|
| 690 |
profiles = {}
|
| 691 |
-
|
| 692 |
-
|
| 693 |
-
|
| 694 |
-
|
| 695 |
-
|
| 696 |
-
|
| 697 |
-
|
| 698 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 699 |
return profiles
|
| 700 |
|
| 701 |
def _build_message_schedule(self, scenario: Dict,
|
|
|
|
| 466 |
def _validate_action(self, action: AgentAction,
|
| 467 |
state: VERGILState) -> Tuple[bool, str]:
|
| 468 |
"""Check if action is legal given current state."""
|
| 469 |
+
node_targeting = (ActionType.ACCEPT, ActionType.DECLINE,
|
| 470 |
+
ActionType.COUNTER_PROPOSE, ActionType.RENEGOTIATE,
|
| 471 |
+
ActionType.DELEGATE)
|
| 472 |
+
|
| 473 |
+
if action.action_type in node_targeting:
|
| 474 |
if action.target_node_id is None and action.target_message_id is None:
|
| 475 |
return False, "Action requires a target commitment or message"
|
| 476 |
|
| 477 |
+
# Only validate target_node_id for actions that *use* a target.
|
| 478 |
+
# DO_NOTHING with a stale/hallucinated target_node_id is treated as
|
| 479 |
+
# a benign no-op (the target is ignored anyway) — rejecting it would
|
| 480 |
+
# freeze time under greedy LLM decoding and create infinite loops
|
| 481 |
+
# of the same-state, same-output kind.
|
| 482 |
+
if action.target_node_id and action.action_type in node_targeting:
|
| 483 |
node = self.cdg.get_node(action.target_node_id)
|
| 484 |
if node is None:
|
| 485 |
return False, f"Target node {action.target_node_id} not found"
|
|
|
|
| 696 |
|
| 697 |
def _build_stakeholder_profiles(self, scenario: Dict) -> Dict[str, StakeholderProfile]:
|
| 698 |
profiles = {}
|
| 699 |
+
stk_data = scenario.get('stakeholders', [])
|
| 700 |
+
|
| 701 |
+
if isinstance(stk_data, dict):
|
| 702 |
+
for sid, s_data in stk_data.items():
|
| 703 |
+
role = StakeholderRole(s_data.get('role', 'colleague'))
|
| 704 |
+
profile = StakeholderProfile(
|
| 705 |
+
stakeholder_id=sid,
|
| 706 |
+
name=s_data.get('name', sid),
|
| 707 |
+
role=role,
|
| 708 |
+
)
|
| 709 |
+
profiles[sid] = profile
|
| 710 |
+
elif isinstance(stk_data, list):
|
| 711 |
+
for s_data in stk_data:
|
| 712 |
+
role = StakeholderRole(s_data.get('role', 'colleague'))
|
| 713 |
+
profile = StakeholderProfile(
|
| 714 |
+
stakeholder_id=s_data['id'],
|
| 715 |
+
name=s_data.get('name', s_data['id']),
|
| 716 |
+
role=role,
|
| 717 |
+
)
|
| 718 |
+
profiles[s_data['id']] = profile
|
| 719 |
+
|
| 720 |
return profiles
|
| 721 |
|
| 722 |
def _build_message_schedule(self, scenario: Dict,
|