Spaces:
Sleeping
Sleeping
File size: 25,330 Bytes
9c90775 | 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 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 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 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 | {% extends "base.html" %}
{% block title %}Upload Files β Multi-RAG Studio{% endblock %}
{% block extra_head %}
<style>
/* ββ Drop Zone ββ */
#drop-zone {
border: 2px dashed rgba(99,102,241,0.35);
transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
#drop-zone.drag-over {
border-color: rgba(99,102,241,0.9);
background: rgba(99,102,241,0.06);
transform: scale(1.01);
}
/* ββ File chip ββ */
.file-chip {
animation: chipIn 0.25s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes chipIn {
from { opacity:0; transform:scale(0.7) translateY(6px); }
to { opacity:1; transform:scale(1) translateY(0); }
}
/* ββ Progress bar shimmer ββ */
.shimmer {
background: linear-gradient(90deg,
rgba(99,102,241,0.0) 0%,
rgba(99,102,241,0.6) 50%,
rgba(99,102,241,0.0) 100%);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
0% { background-position: -200% 0; }
100% { background-position: 200% 0; }
}
/* ββ Step pill ββ */
.step-pill {
transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.step-pill.active { background:rgba(99,102,241,0.18); border-color:rgba(99,102,241,0.6); color:#a5b4fc; }
.step-pill.done { background:rgba(34,197,94,0.12); border-color:rgba(34,197,94,0.4); color:#86efac; }
/* ββ Ingestion log line ββ */
.log-line { animation: logIn 0.2s ease both; }
@keyframes logIn {
from { opacity:0; transform:translateX(-8px); }
to { opacity:1; transform:translateX(0); }
}
/* ββ Pulsing dot ββ */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.blink { animation: blink 1s step-end infinite; }
/* ββ Timer badge ββ */
#global-timer-badge {
font-variant-numeric: tabular-nums;
min-width: 80px;
}
</style>
{% endblock %}
{% block main %}
{# βββ PHASE 1 : Login / Time Selection ββββββββββββββββββββββββββββββββββββ #}
<section id="phase-login" class="flex items-center justify-center min-h-[calc(100vh-12rem)]">
<div class="w-full max-w-md space-y-8">
<div class="text-center space-y-2">
<div class="inline-flex items-center space-x-2 bg-indigo-500/10 text-indigo-400 px-4 py-1.5 rounded-full text-xs font-bold tracking-wider uppercase border border-indigo-500/20">
<span>β± Session Setup</span>
</div>
<h1 class="text-3xl font-black text-white tracking-tight">How long do you need?</h1>
<p class="text-slate-400 text-sm">Your session β and all its data β will be auto-wiped after the timer ends.</p>
</div>
{# Time options injected by Jinja from Python constants #}
<div class="grid gap-3" id="time-options">
{% for opt in time_options %}
<button
class="time-btn group relative w-full flex items-center justify-between px-6 py-4 rounded-2xl bg-slate-900/50 border border-white/8 hover:border-indigo-500/50 hover:bg-slate-800/60 transition-all duration-200 text-left"
data-seconds="{{ opt.seconds }}">
<div class="flex items-center space-x-4">
<div class="w-10 h-10 rounded-xl bg-indigo-500/10 text-indigo-400 flex items-center justify-center text-lg font-extrabold group-hover:scale-110 transition-transform">
{{ opt.icon }}
</div>
<div>
<p class="text-white font-bold text-sm">{{ opt.label }}</p>
<p class="text-slate-500 text-xs">{{ opt.description }}</p>
</div>
</div>
<span class="text-indigo-400 font-black text-lg opacity-0 group-hover:opacity-100 transition-opacity">β</span>
</button>
{% endfor %}
</div>
<div id="login-status" class="hidden text-center space-y-2">
<div class="inline-flex items-center space-x-2 text-indigo-400 text-sm font-semibold">
<svg class="animate-spin w-4 h-4" fill="none" viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"/>
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8v8z"/>
</svg>
<span>Starting your sessionβ¦</span>
</div>
</div>
</div>
</section>
{# βββ PHASE 2 : File Upload ββββββββββββββββββββββββββββββββββββββββββββββββ #}
<section id="phase-upload" class="hidden min-h-[calc(100vh-12rem)] flex flex-col justify-center py-10">
<div class="max-w-2xl mx-auto w-full space-y-8">
{# Steps indicator #}
<div class="flex items-center space-x-2 text-xs font-bold">
<span class="step-pill active px-3 py-1 rounded-full border" id="step-upload-pill">1. Upload</span>
<span class="flex-1 h-px bg-white/10"></span>
<span class="step-pill px-3 py-1 rounded-full border border-white/10 text-slate-500" id="step-ingest-pill">2. Ingest</span>
<span class="flex-1 h-px bg-white/10"></span>
<span class="step-pill px-3 py-1 rounded-full border border-white/10 text-slate-500" id="step-chat-pill">3. Chat</span>
</div>
<div class="space-y-2">
<h2 class="text-2xl font-extrabold text-white">Upload your files</h2>
<p class="text-slate-400 text-sm">PDFs, CSVs, text, images β any format, any quantity.</p>
</div>
{# Drop zone #}
<div
id="drop-zone"
class="relative rounded-2xl p-12 flex flex-col items-center justify-center space-y-4 cursor-pointer bg-slate-900/30 text-center select-none">
<input type="file" id="file-input" multiple class="absolute inset-0 w-full h-full opacity-0 cursor-pointer z-10" />
<div class="w-16 h-16 rounded-2xl bg-indigo-500/10 border border-indigo-500/20 flex items-center justify-center text-3xl pointer-events-none">
π
</div>
<div class="pointer-events-none">
<p class="text-white font-bold text-base">Drag & drop files here</p>
<p class="text-slate-500 text-xs mt-1">or click anywhere in this box to browse</p>
</div>
<div class="pointer-events-none text-xs text-slate-600 border border-white/5 px-3 py-1 rounded-full bg-slate-900/40">
All file types Β· No size limit
</div>
</div>
{# File list #}
<div id="file-list" class="space-y-2 hidden">
<p class="text-slate-400 text-xs font-semibold uppercase tracking-wider">Queued files</p>
<div id="file-chips" class="space-y-2 max-h-56 overflow-y-auto pr-1"></div>
</div>
{# Upload progress #}
<div id="upload-progress-wrapper" class="hidden space-y-2">
<div class="flex items-center justify-between text-xs text-slate-400">
<span id="upload-progress-label">Uploadingβ¦</span>
<span id="upload-progress-pct">0%</span>
</div>
<div class="w-full h-1.5 rounded-full bg-slate-800 overflow-hidden">
<div id="upload-progress-bar" class="h-full rounded-full bg-gradient-to-r from-indigo-500 to-purple-500 transition-all duration-300" style="width:0%"></div>
</div>
</div>
{# Action buttons #}
<div class="flex gap-3">
<button id="btn-clear" class="hidden px-4 py-2.5 rounded-xl bg-slate-800 hover:bg-slate-700 text-slate-400 hover:text-white text-sm font-semibold transition-all duration-200 border border-white/5">
Clear all
</button>
<button id="btn-continue-upload"
class="flex-1 inline-flex items-center justify-center px-6 py-3.5 rounded-xl bg-gradient-to-r from-indigo-600 to-purple-600 hover:from-indigo-500 hover:to-purple-500 text-white font-extrabold shadow-lg shadow-indigo-500/30 transition-all duration-300 disabled:opacity-40 disabled:cursor-not-allowed disabled:hover:from-indigo-600 disabled:hover:to-purple-600"
disabled>
Continue β
</button>
</div>
</div>
</section>
{# βββ PHASE 3 : Ingestion βββββββββββββββββββββββββββββββββββββββββββββββββ #}
<section id="phase-ingest" class="hidden min-h-[calc(100vh-12rem)] flex flex-col justify-center py-10">
<div class="max-w-2xl mx-auto w-full space-y-8">
{# Steps indicator #}
<div class="flex items-center space-x-2 text-xs font-bold">
<span class="step-pill done px-3 py-1 rounded-full border" id="step-upload-pill2">β Upload</span>
<span class="flex-1 h-px bg-white/10"></span>
<span class="step-pill active px-3 py-1 rounded-full border" id="step-ingest-pill2">2. Ingesting</span>
<span class="flex-1 h-px bg-white/10"></span>
<span class="step-pill px-3 py-1 rounded-full border border-white/10 text-slate-500">3. Chat</span>
</div>
<div class="space-y-2">
<h2 class="text-2xl font-extrabold text-white flex items-center gap-3">
<span id="ingest-title">Data Ingestion Startingβ¦</span>
<span id="ingest-spinner" class="inline-flex">
<svg class="animate-spin w-5 h-5 text-indigo-400" fill="none" viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"/>
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8v8z"/>
</svg>
</span>
</h2>
<p class="text-slate-400 text-sm">Vectorizing, embedding, building knowledge graphβ¦ grab a chai β</p>
</div>
{# Big animated status orb #}
<div class="flex justify-center py-4">
<div class="relative w-32 h-32 flex items-center justify-center">
<div class="absolute inset-0 rounded-full bg-indigo-500/10 animate-ping" style="animation-duration:2s;"></div>
<div class="absolute inset-2 rounded-full bg-indigo-500/15 animate-ping" style="animation-duration:2.5s; animation-delay:0.5s;"></div>
<div class="relative w-20 h-20 rounded-full bg-gradient-to-tr from-indigo-600 via-purple-600 to-pink-500 flex items-center justify-center shadow-[0_0_40px_rgba(99,102,241,0.6)]">
<span id="ingest-orb-icon" class="text-3xl">π§ </span>
</div>
</div>
</div>
{# Live log terminal #}
<div class="rounded-2xl bg-slate-950/70 border border-white/8 p-5 space-y-3 font-mono text-xs">
<div class="flex items-center space-x-2 pb-2 border-b border-white/5">
<div class="w-3 h-3 rounded-full bg-red-500/60"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500/60"></div>
<div class="w-3 h-3 rounded-full bg-green-500/60"></div>
<span class="text-slate-600 ml-2">ingestion.log</span>
<span id="live-dot" class="ml-auto text-green-400 blink">β</span>
</div>
<div id="ingest-log" class="space-y-1 min-h-[80px] max-h-48 overflow-y-auto"></div>
</div>
{# Stats row #}
<div id="ingest-stats" class="hidden grid grid-cols-3 gap-4">
<div class="rounded-xl bg-slate-900/50 border border-white/5 p-4 text-center space-y-1">
<p class="text-slate-500 text-xs font-semibold uppercase tracking-wider">Files</p>
<p id="stat-files" class="text-2xl font-black text-white">β</p>
</div>
<div class="rounded-xl bg-slate-900/50 border border-white/5 p-4 text-center space-y-1">
<p class="text-slate-500 text-xs font-semibold uppercase tracking-wider">Docs</p>
<p id="stat-docs" class="text-2xl font-black text-indigo-400">β</p>
</div>
<div class="rounded-xl bg-slate-900/50 border border-white/5 p-4 text-center space-y-1">
<p class="text-slate-500 text-xs font-semibold uppercase tracking-wider">Status</p>
<p id="stat-status" class="text-2xl font-black text-yellow-400">βοΈ</p>
</div>
</div>
{# Continue to chat #}
<button id="btn-go-chat"
class="hidden w-full inline-flex items-center justify-center px-6 py-4 rounded-xl bg-gradient-to-r from-green-600 to-emerald-600 hover:from-green-500 hover:to-emerald-500 text-white font-extrabold shadow-lg shadow-green-500/30 transition-all duration-300 text-lg"
>
π Continue to Chat
</button>
</div>
</section>
{% endblock %}
{% block extra_scripts %}
<script>
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
CONSTANTS β injected by Jinja (never hard-code URLs here)
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
const URLS = {
login : "{{ urls.login_base }}", /* /api/v1/user/login/{seconds} */
upload : "{{ urls.upload }}", /* /api/v1/upload */
ingest : "{{ urls.ingest }}", /* /api/v1/ingest */
chat : "{{ urls.chat_page }}" /* /chat */
};
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
STATE
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
let selectedFiles = []; /* FileList β Array */
let sessionSeconds = 0;
let timerInterval = null;
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
HELPERS
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
const $ = id => document.getElementById(id);
function showPhase(phase) {
["phase-login","phase-upload","phase-ingest"].forEach(p => {
$(p).classList.toggle("hidden", p !== phase);
});
}
function fmtBytes(b) {
if (b < 1024) return b + " B";
if (b < 1048576) return (b/1024).toFixed(1) + " KB";
return (b/1048576).toFixed(1) + " MB";
}
function fmtTime(s) {
const h = Math.floor(s/3600), m = Math.floor((s%3600)/60), sec = s%60;
if (h > 0) return `${h}:${String(m).padStart(2,"0")}:${String(sec).padStart(2,"0")}`;
return `${String(m).padStart(2,"0")}:${String(sec).padStart(2,"0")}`;
}
function appendLog(msg, color="text-slate-400") {
const log = $("ingest-log");
const line = document.createElement("div");
line.className = `log-line flex items-start space-x-2 ${color}`;
line.innerHTML = `<span class="text-slate-600 select-none">${new Date().toLocaleTimeString()}</span><span>${msg}</span>`;
log.appendChild(line);
log.scrollTop = log.scrollHeight;
}
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
GLOBAL TIMER (navbar badge)
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
function startGlobalTimer(totalSeconds) {
sessionSeconds = totalSeconds;
let remaining = totalSeconds;
/* reveal the badge wrapper in the navbar */
const wrapper = document.getElementById("global-timer-wrapper");
if (wrapper) wrapper.classList.remove("hidden");
const badge = document.getElementById("global-timer-badge");
/* target just the text <span>, not the whole div (which contains an SVG) */
const badgeSpan = badge ? badge.querySelector("span") : null;
function tick() {
const txt = fmtTime(remaining);
if (badgeSpan) badgeSpan.textContent = txt;
if (remaining <= 60) {
badge.classList.remove("bg-indigo-500/20","text-indigo-400","border-indigo-500/30");
badge.classList.add("bg-red-500/20","text-red-400","border-red-500/40");
}
if (remaining <= 0) {
clearInterval(timerInterval);
if (badgeSpan) badgeSpan.textContent = "EXPIRED";
badge.classList.add("opacity-60");
}
remaining--;
}
tick();
timerInterval = setInterval(tick, 1000);
}
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
PHASE 1 β Login
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
document.querySelectorAll(".time-btn").forEach(btn => {
btn.addEventListener("click", async () => {
const secs = parseInt(btn.dataset.seconds, 10);
/* dim all buttons, show spinner */
document.querySelectorAll(".time-btn").forEach(b => b.disabled = true);
$("login-status").classList.remove("hidden");
try {
const res = await fetch(`${URLS.login}/${secs}`, { method:"GET", credentials:"include" });
const data = await res.json();
if (!res.ok) throw new Error(data.error || "Login failed");
/* β
session started β persist for all pages via localStorage */
localStorage.setItem('multirag_session_start', Date.now().toString());
localStorage.setItem('multirag_session_duration', secs.toString());
/* kick the global navbar timer (already attached by base.html) */
if (window.__startNavTimer) window.__startNavTimer();
showPhase("phase-upload");
} catch(err) {
$("login-status").innerHTML = `<p class="text-red-400 text-sm font-semibold">β ${err.message}</p>`;
document.querySelectorAll(".time-btn").forEach(b => b.disabled = false);
}
});
});
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
PHASE 2 β File Upload
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
const dropZone = $("drop-zone");
const fileInput = $("file-input");
/* Drag & Drop events */
["dragenter","dragover"].forEach(evt =>
dropZone.addEventListener(evt, e => { e.preventDefault(); dropZone.classList.add("drag-over"); })
);
["dragleave","drop"].forEach(evt =>
dropZone.addEventListener(evt, e => { e.preventDefault(); dropZone.classList.remove("drag-over"); })
);
dropZone.addEventListener("drop", e => addFiles(e.dataTransfer.files));
fileInput.addEventListener("change", () => addFiles(fileInput.files));
function addFiles(fileList) {
Array.from(fileList).forEach(f => {
if (!selectedFiles.find(s => s.name === f.name && s.size === f.size))
selectedFiles.push(f);
});
renderFileList();
}
function renderFileList() {
const chips = $("file-chips");
chips.innerHTML = "";
selectedFiles.forEach((f, i) => {
const chip = document.createElement("div");
chip.className = "file-chip flex items-center justify-between bg-slate-900/60 border border-white/8 rounded-xl px-4 py-2.5";
chip.innerHTML = `
<div class="flex items-center space-x-3 min-w-0">
<span class="text-lg shrink-0">${fileIcon(f.name)}</span>
<div class="min-w-0">
<p class="text-sm text-white font-semibold truncate max-w-[260px]">${f.name}</p>
<p class="text-xs text-slate-500">${fmtBytes(f.size)}</p>
</div>
</div>
<button class="ml-3 text-slate-600 hover:text-red-400 transition-colors shrink-0 text-lg" data-idx="${i}">Γ</button>`;
chip.querySelector("button").addEventListener("click", () => {
selectedFiles.splice(i, 1);
renderFileList();
});
chips.appendChild(chip);
});
const hasFiles = selectedFiles.length > 0;
$("file-list").classList.toggle("hidden", !hasFiles);
$("btn-clear").classList.toggle("hidden", !hasFiles);
$("btn-continue-upload").disabled = !hasFiles;
}
function fileIcon(name) {
const ext = name.split(".").pop().toLowerCase();
const map = { pdf:"π", csv:"π", xlsx:"π", xls:"π", png:"πΌοΈ", jpg:"πΌοΈ", jpeg:"πΌοΈ", gif:"πΌοΈ",
mp3:"π΅", wav:"π΅", mp4:"π¬", txt:"π", json:"ποΈ", zip:"π¦", tar:"π¦", gz:"π¦" };
return map[ext] || "π";
}
$("btn-clear").addEventListener("click", () => {
selectedFiles = [];
fileInput.value = "";
renderFileList();
});
/* Upload all files sequentially then trigger ingest */
$("btn-continue-upload").addEventListener("click", async () => {
if (!selectedFiles.length) return;
$("btn-continue-upload").disabled = true;
$("btn-clear").disabled = true;
$("file-input").disabled = true;
const wrapper = $("upload-progress-wrapper");
const bar = $("upload-progress-bar");
const pct = $("upload-progress-pct");
const label = $("upload-progress-label");
wrapper.classList.remove("hidden");
let done = 0;
let allOk = true;
for (const file of selectedFiles) {
label.textContent = `Uploading ${file.name}β¦`;
const fd = new FormData();
fd.append("file", file);
try {
const res = await fetch(URLS.upload, { method:"POST", body:fd, credentials:"include" });
if (!res.ok) { allOk = false; }
} catch { allOk = false; }
done++;
const p = Math.round((done / selectedFiles.length) * 100);
bar.style.width = p + "%";
pct.textContent = p + "%";
}
if (!allOk) {
label.textContent = "β οΈ Some files failed. Continuing anywayβ¦";
label.classList.add("text-yellow-400");
} else {
label.textContent = "β
All files uploaded!";
label.classList.add("text-green-400");
}
/* short pause so user can read the status */
await new Promise(r => setTimeout(r, 800));
/* β Move to ingestion phase */
showPhase("phase-ingest");
startIngestion();
});
/* ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
PHASE 3 β Ingestion
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
async function startIngestion() {
const FAKE_LOGS = [
["π Scanning uploaded filesβ¦", "text-slate-300"],
["π¦ Chunking documents into passagesβ¦", "text-slate-300"],
["𧬠Embedding with all-MiniLM-L6-v2β¦", "text-indigo-300"],
["πΈοΈ Building knowledge graph edgesβ¦", "text-purple-300"],
["ποΈ Persisting vector store to diskβ¦", "text-slate-300"],
["β‘ Optimising HNSW indexβ¦", "text-yellow-300"],
];
$("ingest-log").innerHTML = "";
$("ingest-stats").classList.add("hidden");
$("btn-go-chat").classList.add("hidden");
$("ingest-title").textContent = "Data Ingestion Startingβ¦";
/* drip fake progress logs while waiting for real response */
let logIdx = 0;
const dripInterval = setInterval(() => {
if (logIdx < FAKE_LOGS.length) {
const [msg, cls] = FAKE_LOGS[logIdx++];
appendLog(msg, cls);
}
}, 900);
try {
const res = await fetch(URLS.ingest, { method:"GET", credentials:"include" });
const data = await res.json();
clearInterval(dripInterval);
$("live-dot").classList.remove("blink");
if (!res.ok) {
appendLog(`β Error: ${data.error || "Ingestion failed"}`, "text-red-400");
$("ingest-title").textContent = "Ingestion Failed";
$("ingest-spinner").innerHTML = '<span class="text-red-400 text-xl">β</span>';
return;
}
/* β
success */
appendLog("β
Ingestion complete! Knowledge base is ready.", "text-green-400");
$("ingest-title").textContent = "Ingestion Complete!";
$("ingest-spinner").innerHTML = '<span class="text-green-400 text-xl">β</span>';
$("ingest-orb-icon").textContent = "β
";
/* show stats */
$("ingest-stats").classList.remove("hidden");
$("stat-files").textContent = data.files_processed ?? "β";
$("stat-docs").textContent = Array.isArray(data.all_docs) ? data.all_docs.length : (data.all_docs ?? "β");
$("stat-status").textContent = "β
";
/* ββ auto-redirect to chat with 3s countdown ββ */
appendLog("π Redirecting to Chat in 3 secondsβ¦", "text-indigo-300");
const goBtn = $("btn-go-chat");
goBtn.classList.remove("hidden");
let countdown = 3;
goBtn.textContent = `π Opening Chat in ${countdown}s β click to go now`;
const countTimer = setInterval(() => {
countdown--;
if (countdown <= 0) {
clearInterval(countTimer);
window.location.href = URLS.chat;
} else {
goBtn.textContent = `π Opening Chat in ${countdown}s β click to go now`;
}
}, 1000);
goBtn.onclick = () => { clearInterval(countTimer); window.location.href = URLS.chat; };
} catch(err) {
clearInterval(dripInterval);
appendLog(`β Network error: ${err.message}`, "text-red-400");
$("ingest-title").textContent = "Ingestion Failed";
$("ingest-spinner").innerHTML = '<span class="text-red-400 text-xl">β</span>';
}
}
/* btn-go-chat click is wired dynamically inside startIngestion() */
</script>
{% endblock %}
|