refactor: remove Diagnostics component and related LLM call telemetry
All checks were successful
On Push to Main / test (push) Successful in 31s
On Push to Main / publish (push) Successful in 58s
On Push to Main / deploy-dev (push) Successful in 1m30s

This commit is contained in:
RaymondVerhoef
2026-05-22 20:00:47 +02:00
parent 7b6ae265db
commit 881148357e
3 changed files with 1 additions and 184 deletions

View File

@@ -299,17 +299,6 @@ export async function bulkSetCurriculum(year, weeks) {
);
}
// ── LLM Call Telemetry ───────────────────────────────────────────────────────
export async function getRecentLlmCalls(limit = 100) {
try {
const r = await pb.collection('llm_calls').getList(1, limit, { sort: '-created' });
return r.items;
} catch {
return [];
}
}
// ── Reset for Smoke Testing ──────────────────────────────────────────────────
/**