Spaces:
Sleeping
Sleeping
File size: 13,466 Bytes
2743bb8 | 1 2 3 4 5 6 7 8 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>QED Math Environment</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body { font-family: 'Inter', system-ui, sans-serif; }
.obs-box { font-family: 'Courier New', monospace; white-space: pre-wrap; word-break: break-word; }
.score-bar { transition: width 0.4s ease; }
</style>
</head>
<body class="bg-gray-50 min-h-screen">
<!-- Header -->
<header class="bg-white border-b border-gray-200 px-6 py-3 flex items-center justify-between">
<div class="flex items-center gap-3">
<span id="status-dot" class="w-2.5 h-2.5 rounded-full bg-gray-400"></span>
<span class="font-semibold text-gray-800">QED Math Environment</span>
</div>
<span id="header-status" class="text-sm text-gray-500">Connectingโฆ</span>
</header>
<!-- Main grid -->
<div class="grid grid-cols-2 gap-0 h-[calc(100vh-53px)]">
<!-- LEFT PANEL -->
<div class="border-r border-gray-200 bg-white flex flex-col overflow-y-auto p-6 gap-5">
<!-- Current Problem -->
<section>
<h2 class="text-sm font-semibold text-gray-500 uppercase tracking-wide mb-2">Current Problem</h2>
<div id="problem-box"
class="bg-gray-50 border border-gray-200 rounded-lg p-4 text-sm text-gray-700 min-h-[96px] leading-relaxed">
<span class="text-gray-400 italic">No problem loaded. Click Reset or Get Problem.</span>
</div>
</section>
<!-- Proof Textarea -->
<section>
<h2 class="text-sm font-semibold text-gray-500 uppercase tracking-wide mb-2">Your Proof</h2>
<textarea id="proof-input"
class="w-full border border-gray-200 rounded-lg p-3 text-sm text-gray-800 resize-y min-h-[140px] focus:outline-none focus:ring-2 focus:ring-blue-500"
placeholder="Write your proof hereโฆ"></textarea>
</section>
<!-- Action Buttons -->
<section class="flex flex-wrap gap-2">
<button onclick="doReset()"
class="px-4 py-2 text-sm font-medium rounded-md bg-gray-800 text-white hover:bg-gray-700 active:scale-95 transition">
Reset Environment
</button>
<button onclick="doGetProblem()"
class="px-4 py-2 text-sm font-medium rounded-md bg-gray-100 text-gray-800 hover:bg-gray-200 active:scale-95 transition">
Get Problem
</button>
<button onclick="doGetGuidelines()"
class="px-4 py-2 text-sm font-medium rounded-md bg-gray-100 text-gray-800 hover:bg-gray-200 active:scale-95 transition">
Get Guidelines
</button>
<button onclick="doSubmitProof()"
class="px-4 py-2 text-sm font-medium rounded-md bg-blue-600 text-white hover:bg-blue-700 active:scale-95 transition">
Submit Proof
</button>
</section>
<!-- Last Submission Result -->
<section id="submission-result" class="hidden">
<h2 class="text-sm font-semibold text-gray-500 uppercase tracking-wide mb-2">Last Submission</h2>
<div class="bg-gray-50 border border-gray-200 rounded-lg p-4 space-y-3">
<!-- Score bar -->
<div>
<div class="flex justify-between text-xs text-gray-500 mb-1">
<span>Score</span>
<span id="score-label">โ</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div id="score-bar" class="score-bar h-2 rounded-full bg-blue-500 w-0"></div>
</div>
</div>
<!-- Reward / correct badge -->
<div class="flex items-center gap-3 text-sm">
<span class="text-gray-500">Reward:</span>
<span id="reward-label" class="font-mono font-semibold text-gray-800">โ</span>
<span id="correct-badge" class="hidden px-2 py-0.5 text-xs rounded-full font-medium"></span>
</div>
<!-- Feedback -->
<div>
<p class="text-xs text-gray-500 mb-1">Feedback</p>
<p id="feedback-text" class="text-sm text-gray-700 leading-relaxed"></p>
</div>
</div>
</section>
<!-- Current State -->
<section>
<h2 class="text-sm font-semibold text-gray-500 uppercase tracking-wide mb-2">Current State</h2>
<div class="bg-gray-50 border border-gray-200 rounded-lg p-4 space-y-1.5 text-sm">
<div class="flex gap-2">
<span class="text-gray-500 w-24 shrink-0">Status</span>
<span id="state-status" class="font-medium text-gray-800">โ</span>
</div>
<div class="flex gap-2">
<span class="text-gray-500 w-24 shrink-0">Episode ID</span>
<span id="state-episode" class="font-mono text-gray-600 truncate">โ</span>
</div>
<div class="flex gap-2">
<span class="text-gray-500 w-24 shrink-0">Step Count</span>
<span id="state-steps" class="font-medium text-gray-800">0</span>
</div>
<div class="flex gap-2">
<span class="text-gray-500 w-24 shrink-0">Attempt</span>
<span id="state-attempt" class="font-medium text-gray-800">โ</span>
</div>
</div>
</section>
</div><!-- /LEFT PANEL -->
<!-- RIGHT PANEL -->
<div class="bg-white flex flex-col overflow-y-auto p-6 gap-5">
<h2 class="text-base font-semibold text-gray-800">State Observer</h2>
<!-- Current Observation -->
<section>
<h3 class="text-sm font-semibold text-gray-500 uppercase tracking-wide mb-2">Current Observation</h3>
<div id="obs-box"
class="obs-box bg-gray-50 border border-gray-200 rounded-lg p-4 text-xs text-gray-700 max-h-72 overflow-y-auto">
<span class="text-gray-400 italic">Awaiting first actionโฆ</span>
</div>
</section>
<!-- Action History -->
<section class="flex-1">
<h3 class="text-sm font-semibold text-gray-500 uppercase tracking-wide mb-2">Action History</h3>
<div id="history-list" class="space-y-2">
<p class="text-sm text-gray-400 italic">No actions taken yet.</p>
</div>
</section>
</div><!-- /RIGHT PANEL -->
</div><!-- /grid -->
<script>
// โโ State โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
let _busy = false;
// โโ Helpers โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
function ts() {
const d = new Date();
return d.toTimeString().slice(0, 8);
}
function setConnected(ok) {
const dot = document.getElementById('status-dot');
const hdr = document.getElementById('header-status');
dot.className = `w-2.5 h-2.5 rounded-full ${ok ? 'bg-green-500' : 'bg-red-500'}`;
hdr.textContent = ok ? 'Connected' : 'Disconnected';
}
function setBusy(v) {
_busy = v;
document.querySelectorAll('button').forEach(b => b.disabled = v);
}
async function api(method, path, body) {
const opts = { method, headers: { 'Content-Type': 'application/json' } };
if (body !== undefined) opts.body = JSON.stringify(body);
const res = await fetch(path, opts);
if (!res.ok) throw new Error(`${method} ${path} โ ${res.status}`);
return res.json();
}
function renderObs(data) {
document.getElementById('obs-box').textContent = JSON.stringify(data, null, 2);
}
function addHistory(toolName, detail) {
const list = document.getElementById('history-list');
const placeholder = list.querySelector('p');
if (placeholder) placeholder.remove();
const el = document.createElement('div');
el.className = 'bg-gray-50 border border-gray-100 rounded-lg px-4 py-2.5 text-sm';
el.innerHTML = `
<div class="flex justify-between items-center">
<span class="font-medium text-gray-800">${toolName}</span>
<span class="text-xs text-gray-400">${ts()}</span>
</div>
${detail ? `<p class="text-xs text-gray-500 mt-1">${detail}</p>` : ''}
`;
list.prepend(el);
}
function updateState(obs) {
const meta = obs?.metadata ?? {};
document.getElementById('state-status').textContent =
meta.status ?? (obs?.done ? 'Done' : 'Ready');
if (obs?.episode_id)
document.getElementById('state-episode').textContent = obs.episode_id;
if (meta.step_count !== undefined)
document.getElementById('state-steps').textContent = meta.step_count;
if (meta.attempt_count !== undefined)
document.getElementById('state-attempt').textContent = meta.attempt_count;
}
function showProblem(obs) {
const problem = obs?.problem ?? obs?.result?.problem ?? '';
if (problem) {
document.getElementById('problem-box').textContent = problem;
}
}
function showSubmission(result) {
const sec = document.getElementById('submission-result');
sec.classList.remove('hidden');
const score = result?.score ?? 0;
const maxScore = 7;
const reward = result?.reward ?? 0;
const feedback = result?.feedback ?? '';
const isCorrect = result?.is_correct ?? false;
document.getElementById('score-label').textContent = `${score} / ${maxScore}`;
document.getElementById('score-bar').style.width = `${(score / maxScore) * 100}%`;
document.getElementById('score-bar').className =
`score-bar h-2 rounded-full w-0 ${score >= 6 ? 'bg-green-500' : score >= 3 ? 'bg-yellow-500' : 'bg-red-400'}`;
document.getElementById('reward-label').textContent = reward.toFixed(3);
const badge = document.getElementById('correct-badge');
badge.classList.remove('hidden');
if (isCorrect) {
badge.textContent = 'Correct';
badge.className = 'px-2 py-0.5 text-xs rounded-full font-medium bg-green-100 text-green-700';
} else {
badge.textContent = 'Incorrect';
badge.className = 'px-2 py-0.5 text-xs rounded-full font-medium bg-red-100 text-red-700';
}
document.getElementById('feedback-text').textContent = feedback;
}
// โโ Poll /state โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async function pollState() {
try {
const state = await api('GET', '/state');
if (state.episode_id)
document.getElementById('state-episode').textContent = state.episode_id;
document.getElementById('state-steps').textContent = state.step_count ?? 0;
setConnected(true);
} catch {
setConnected(false);
}
}
setInterval(pollState, 2000);
// โโ Actions โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async function doReset() {
if (_busy) return;
setBusy(true);
try {
const data = await api('POST', '/reset', {});
const obs = data.observation ?? data;
renderObs(obs);
showProblem(obs);
updateState(obs);
document.getElementById('submission-result').classList.add('hidden');
document.getElementById('proof-input').value = '';
document.getElementById('state-status').textContent = 'Reset';
addHistory('reset', `Episode ${obs?.metadata?.reset_count ?? ''}`);
setConnected(true);
} catch (e) {
addHistory('reset', `Error: ${e.message}`);
setConnected(false);
} finally {
setBusy(false);
}
}
async function doStep(toolName, args, historyDetail) {
if (_busy) return;
setBusy(true);
try {
const data = await api('POST', '/step', {
action: { type: 'call_tool', tool_name: toolName, arguments: args ?? {} }
});
const obs = data.observation ?? data;
renderObs(obs);
updateState(obs);
// Extract nested result
const result = obs?.result ?? obs?.proof_submission ?? obs;
if (toolName === 'submit_proof') {
showSubmission(result);
} else if (toolName === 'get_problem') {
showProblem(result);
} else if (toolName === 'get_grading_guidelines') {
const guidelines = result?.grading_guidelines ?? result?.guidelines ?? JSON.stringify(result);
document.getElementById('problem-box').textContent = guidelines;
}
addHistory(toolName, historyDetail ?? null);
setConnected(true);
} catch (e) {
addHistory(toolName, `Error: ${e.message}`);
setConnected(false);
} finally {
setBusy(false);
}
}
function doGetProblem() { doStep('get_problem', {}); }
function doGetGuidelines() { doStep('get_grading_guidelines', {}); }
function doSubmitProof() {
const proof = document.getElementById('proof-input').value.trim();
doStep('submit_proof', { proof }, proof ? `${proof.length} chars` : 'empty proof');
}
// โโ Init โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
doReset();
</script>
</body>
</html>
|