Spaces:
Sleeping
Sleeping
File size: 31,483 Bytes
7c4703a 0640318 7c4703a 0640318 7f4ea8a 7c4703a 7f4ea8a 7c4703a 7f4ea8a 7c4703a 0640318 7f4ea8a 7c4703a 7f4ea8a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 7f4ea8a 7c4703a 7f4ea8a 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 27edbb8 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 27edbb8 83c6f75 27edbb8 7f4ea8a 7c4703a 7f4ea8a 7c4703a 0640318 7f4ea8a 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 7c4703a 0640318 | 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 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 | /* THEME */
const html = document.documentElement;
const themeBtn = document.getElementById('themeBtn');
function applyTheme(t){
html.dataset.theme=t;
themeBtn.textContent=t==='dark'?'☀':'☾';
localStorage.setItem('cortex-theme',t);
}
const stored=localStorage.getItem('cortex-theme');
const prefersDark=window.matchMedia('(prefers-color-scheme: dark)').matches;
applyTheme(stored||(prefersDark?'dark':'light'));
themeBtn.addEventListener('click',()=>applyTheme(html.dataset.theme==='dark'?'light':'dark'));
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change',e=>{
if(!localStorage.getItem('cortex-theme')) applyTheme(e.matches?'dark':'light');
});
/* RESPONSIVE NAV BINDINGS */
const sidebar = document.getElementById('sidebar');
const mobileNavToggles = document.querySelectorAll('.mobile-nav-toggle');
const mobileOverlay = document.getElementById('mobileOverlay');
function openMobileSidebar() {
sidebar.classList.add('mobile-open');
mobileOverlay.classList.add('show');
}
function closeMobilePanels() {
sidebar.classList.remove('mobile-open');
sourcesPanel.classList.remove('mobile-open');
mobileOverlay.classList.remove('show');
}
mobileNavToggles.forEach(btn => btn.addEventListener('click', openMobileSidebar));
mobileOverlay.addEventListener('click', closeMobilePanels);
/* COLLAPSIBLE SIDEBARS (Desktop) & Sources Panel */
const sidebarToggle=document.getElementById('sidebarToggle');
const sourcesPanel=document.getElementById('sourcesPanel');
const sourcesToggle=document.getElementById('sourcesToggle');
const mobileSourcesBtn=document.getElementById('mobileSourcesBtn');
sidebarToggle.addEventListener('click',()=>{
const c=sidebar.classList.toggle('collapsed');
sidebarToggle.textContent=c?'▶':'◀';
sidebarToggle.title=c?'Expand':'Collapse';
});
// For desktop
sourcesToggle.addEventListener('click',()=>{
const c=sourcesPanel.classList.toggle('collapsed');
sourcesToggle.textContent=c?'◀':'▶';
sourcesToggle.title=c?'Expand':'Collapse';
});
// For mobile
if(mobileSourcesBtn) {
mobileSourcesBtn.addEventListener('click',()=>{
sourcesPanel.classList.add('mobile-open');
mobileOverlay.classList.add('show');
});
}
/* NAV ROUTING */
document.querySelectorAll('.nav-item').forEach(item=>{
item.addEventListener('click',()=>{
document.querySelectorAll('.nav-item').forEach(n=>n.classList.remove('active'));
document.querySelectorAll('.tab-panel').forEach(p=>p.classList.remove('active'));
item.classList.add('active');
document.getElementById('tab-'+item.dataset.tab).classList.add('active');
if(item.dataset.tab==='eval') loadMetrics();
if(item.dataset.tab==='system') loadHealth();
// Auto-close sidebar on mobile after navigating
if(window.innerWidth <= 768) {
closeMobilePanels();
}
});
});
/* HEALTH */
async function checkHealth(){
try{
const r=await fetch('/health');
const d=await r.json();
const dot=document.getElementById('statusDot');
const lbl=document.getElementById('statusLabel');
if(d.status==='ok'){dot.className='status-dot ok';lbl.textContent=(d.collection_stats?.entity_count??0)+' chunks';}
else{dot.className='status-dot err';lbl.textContent='degraded';}
}catch{document.getElementById('statusDot').className='status-dot err';document.getElementById('statusLabel').textContent='offline';}
}
checkHealth();setInterval(checkHealth,30000);
/* TOAST */
function toast(msg,dur=3000){
const t=document.getElementById('toast');t.textContent=msg;t.classList.add('show');
clearTimeout(t._tid);t._tid=setTimeout(()=>t.classList.remove('show'),dur);
}
/* MARKED */
marked.setOptions({breaks:true,gfm:true});
function renderMarkdown(text){return marked.parse(text);}
function linkifyCitations(html,n){
return html.replace(/\[(\d+)\]/g,(match,num)=>{
const i=parseInt(num);
if(i<1||i>n) return match;
return '<a class="cite-link" onclick="highlightSource('+i+')" title="Jump to source '+i+'">['+i+']</a>';
});
}
function highlightSource(n){
const card=document.getElementById('src-card-'+n);
if(!card) return;
// Handle desktop collapse logic
if(window.innerWidth > 768 && sourcesPanel.classList.contains('collapsed')){
sourcesPanel.classList.remove('collapsed');
sourcesToggle.textContent='▶';
}
// Handle mobile slide-in logic
if(window.innerWidth <= 768 && !sourcesPanel.classList.contains('mobile-open')){
sourcesPanel.classList.add('mobile-open');
mobileOverlay.classList.add('show');
}
card.scrollIntoView({behavior:'smooth',block:'nearest'});
card.classList.remove('highlighted');
void card.offsetWidth;
card.classList.add('highlighted');
setTimeout(()=>card.classList.remove('highlighted'),1500);
}
/* CHAT */
const chatMessages=document.getElementById('chatMessages');
const chatInput=document.getElementById('chatInput');
const sendBtn=document.getElementById('sendBtn');
const streamStatus=document.getElementById('streamStatus');
const sourcesList=document.getElementById('sourcesList');
let isStreaming=false;
let currentChunks=[];
chatInput.addEventListener('input',()=>{
chatInput.style.height='auto';
chatInput.style.height=Math.min(chatInput.scrollHeight,150)+'px';
});
chatInput.addEventListener('keydown',e=>{if(e.key==='Enter'&&!e.shiftKey){e.preventDefault();sendMessage();}});
sendBtn.addEventListener('click',sendMessage);
document.getElementById('clearChatBtn').addEventListener('click',()=>{
chatMessages.innerHTML='<div class="message"><div class="msg-avatar ai">cx</div><div class="msg-body"><div class="msg-role">CORTEX</div><div class="msg-text">Cleared. Ask anything.</div></div></div>';
sourcesList.innerHTML='<div class="empty-sources"><svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/></svg><span>Retrieved passages will appear here</span></div>';
streamStatus.textContent='';currentChunks=[];
});
function renderSourceCards(chunks){
currentChunks=chunks;
if(!chunks.length) return;
sourcesList.innerHTML='';
chunks.forEach((c,i)=>{
const n=i+1;
const pct=Math.round(Math.min(Math.max(c.score,0),1)*100);
const card=document.createElement('div');
card.className='source-card';card.id='src-card-'+n;
card.innerHTML='<div class="source-num">['+n+']</div><div class="source-title" title="'+escHtml(c.title)+'">'+escHtml(c.title)+'</div><div class="source-snippet">'+escHtml(c.text_snippet||'')+'</div><div class="source-meta"><div class="score-bar-wrap"><div class="score-bar" style="width:'+pct+'%"></div></div><span class="score-val">'+pct+'%</span></div>';
sourcesList.appendChild(card);
});
}
function buildSourcePills(chunks){
if(!chunks.length) return '';
const pills=chunks.map((c,i)=>{
const n=i+1;
const snippet=(c.text_snippet||'').slice(0,175);
const pct=Math.round(Math.min(Math.max(c.score,0),1)*100);
const fname=(c.source||'').split('/').pop()||c.source;
const title=c.title.slice(0,24)+(c.title.length>24?'…':'');
return '<span class="source-pill" onclick="highlightSource('+n+')">['+n+'] '+escHtml(title)+'<div class="pill-tip"><div class="pill-tip-title">'+escHtml(c.title)+'</div><div class="pill-tip-snippet">'+escHtml(snippet)+(snippet.length>=175?'…':'')+'</div><div class="pill-tip-score">'+escHtml(fname)+' · '+pct+'% relevance</div></div></span>';
}).join('');
return '<div class="source-pills">'+pills+'</div>';
}
async function sendMessage(){
const query=chatInput.value.trim();
if(!query||isStreaming) return;
chatInput.value='';chatInput.style.height='auto';
isStreaming=true;sendBtn.disabled=true;sendBtn.textContent='…';currentChunks=[];
// User bubble
const ud=document.createElement('div');ud.className='message';
ud.innerHTML='<div class="msg-avatar user">you</div><div class="msg-body"><div class="msg-role">YOU</div><div class="msg-text">'+escHtml(query)+'</div></div>';
chatMessages.appendChild(ud);
// AI bubble
const ad=document.createElement('div');ad.className='message';
ad.innerHTML='<div class="msg-avatar ai">cx</div><div class="msg-body"><div class="msg-role">CORTEX</div><div class="msg-text streaming" id="live-text"></div><div class="info-bar" id="live-badges"></div></div>';
chatMessages.appendChild(ad);
chatMessages.scrollTop=chatMessages.scrollHeight;
const liveText=document.getElementById('live-text');
const liveBadges=document.getElementById('live-badges');
const cursor=document.createElement('span');cursor.className='cursor-blink';
liveText.appendChild(cursor);
let rawText='';
streamStatus.textContent='…';
try{
const resp=await fetch('/query/stream',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({query,top_k:10,stream:true,llm:{
provider: llmConfig.provider||null,
model: llmConfig.model||null,
api_key: llmConfig.api_key||null,
// Only send base_url for custom — server ignores it for known providers
base_url: (llmConfig.provider==='custom' && llmConfig.base_url) ? llmConfig.base_url : null,
}})});
if(!resp.ok) throw new Error('HTTP '+resp.status);
const reader=resp.body.getReader();
const decoder=new TextDecoder();
let buf='';
while(true){
const{done,value}=await reader.read();
if(done) break;
buf+=decoder.decode(value,{stream:true});
const lines=buf.split('\n');buf=lines.pop();
for(const line of lines){
if(!line.startsWith('data: ')) continue;
let evt;try{evt=JSON.parse(line.slice(6));}catch{continue;}
if(evt.type==='chunk_meta'){
const chunks=evt.chunks||[];
const routing=evt.routing||{};
renderSourceCards(chunks);
streamStatus.textContent='generating…';
if(routing.intent) addBadge(liveBadges,routing.intent,'amber');
(routing.strategies||[]).forEach(s=>addBadge(liveBadges,s.toUpperCase(),'blue'));
}
else if(evt.type==='crag_update'){
const gc={GOOD:'green',POOR:'amber',ABSENT:'red'};
addBadge(liveBadges,'CRAG: '+(evt.grade||''),gc[evt.grade]||'muted');
if(evt.web_search_used) addBadge(liveBadges,'🌐 web','red');
if(evt.rewritten_query) streamStatus.textContent='rewritten: "'+evt.rewritten_query.slice(0,50)+'…"';
}
else if(evt.type==='token'){
const tok=evt.text||'';
rawText+=tok;
cursor.before(document.createTextNode(tok));
chatMessages.scrollTop=chatMessages.scrollHeight;
}
else if(evt.type==='sources'){
cursor.remove();
liveText.classList.remove('streaming');
liveText.innerHTML=linkifyCitations(renderMarkdown(rawText),currentChunks.length);
liveText.insertAdjacentHTML('afterend',buildSourcePills(currentChunks));
streamStatus.textContent='';
chatMessages.scrollTop=chatMessages.scrollHeight;
}
else if(evt.type==='done'){
if(cursor.isConnected){
cursor.remove();
liveText.classList.remove('streaming');
liveText.innerHTML=linkifyCitations(renderMarkdown(rawText),currentChunks.length);
if(currentChunks.length) liveText.insertAdjacentHTML('afterend',buildSourcePills(currentChunks));
}
streamStatus.textContent='';
}
else if(evt.type==='error'){
cursor.remove();
liveText.textContent='Error: '+evt.message;
liveText.style.color='var(--red)';
streamStatus.textContent='';
}
}
}
}catch(err){
cursor.remove();
liveText.textContent='Connection error: '+err.message;
liveText.style.color='var(--red)';
streamStatus.textContent='';
}
liveText.removeAttribute('id');liveBadges.removeAttribute('id');
isStreaming=false;sendBtn.disabled=false;sendBtn.textContent='send';
chatMessages.scrollTop=chatMessages.scrollHeight;
}
function addBadge(container,text,color){
const b=document.createElement('span');b.className='badge badge-'+color;b.textContent=text;container.appendChild(b);
}
function escHtml(s){return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"');}
/* MODEL SELECTOR */
let providers = [];
let llmConfig = JSON.parse(localStorage.getItem('cortex-llm') || 'null') || {provider:'nvidia_nim',model:'openai/gpt-oss-120b',api_key:'',base_url:''};
// Migration: clear stale base_url from known providers stored by older UI versions
if(llmConfig.base_url && llmConfig.provider !== 'custom') {
llmConfig.base_url = '';
localStorage.setItem('cortex-llm', JSON.stringify(llmConfig));
}
let pendingConfig = {...llmConfig};
async function loadProviders(){
try{
const r=await fetch('/providers');
const d=await r.json();
providers=d.providers;
if(!providers.find(p=>p.id===llmConfig.provider)){llmConfig.provider=d.default_provider;llmConfig.model=d.default_model;}
renderProviderGrid();updateModelPill();
}catch(e){
document.getElementById('modelPillLabel').textContent='no API';
document.getElementById('modelDot').className='model-pill-dot unconfigured';
}
}
function renderProviderGrid(){
const grid=document.getElementById('providerGrid');grid.innerHTML='';
providers.forEach(p=>{
const c=document.createElement('div');
c.className='provider-card'+(p.id===pendingConfig.provider?' selected':'')+(p.configured?'':' unconfigured');
c.dataset.pid=p.id;
c.innerHTML='<div class="pcard-name">'+escHtml(p.label)+'</div><div class="pcard-status'+(p.configured?' ok':'')+'">'+( p.configured?'● configured':'○ no key')+'</div>';
c.addEventListener('click',()=>selectProvider(p.id));
grid.appendChild(c);
});
}
function selectProvider(pid){
pendingConfig.provider=pid;pendingConfig.base_url='';
const p=providers.find(x=>x.id===pid);
const sel=document.getElementById('modelSelect');
const cust=document.getElementById('modelCustomInput');
const baseRow=document.getElementById('customBaseRow');
if(p&&p.models.length>0){
sel.style.display='';cust.style.display='none';
sel.innerHTML=p.models.map(m=>'<option value="'+escHtml(m.id)+'">'+escHtml(m.label)+' ('+escHtml(m.id)+')</option>').join('');
const prev=pendingConfig.model;
if(p.models.find(m=>m.id===prev)) sel.value=prev;
pendingConfig.model=sel.value;
}else{
sel.style.display='none';cust.style.display='';cust.value=pendingConfig.model||'';
}
baseRow.style.display=pid==='custom'?'':'none';
document.querySelectorAll('.provider-card').forEach(c=>c.classList.toggle('selected',c.dataset.pid===pid));
updateFooterInfo(pid);
}
function updateFooterInfo(pid){
const p=providers.find(x=>x.id===pid);
const info=document.getElementById('popFooterInfo');if(!p) return;
if(p.id==='custom') info.textContent='point to any OpenAI-compatible server';
else if(!p.configured) info.textContent='add '+pid.toUpperCase()+'_API_KEY to .env';
else info.textContent=p.base_url.replace('https://','');
}
function updateModelPill(){
const p=providers.find(x=>x.id===llmConfig.provider);
const lbl=document.getElementById('modelPillLabel');
const dot=document.getElementById('modelDot');
const shortModel=llmConfig.model?llmConfig.model.split('/').pop():'—';
lbl.textContent=(p?p.label:llmConfig.provider)+' · '+shortModel;
dot.className='model-pill-dot'+(p&&p.configured?'':' unconfigured');
}
document.getElementById('modelPill').addEventListener('click',e=>{
e.stopPropagation();
const pop=document.getElementById('modelPopover');
const pill=document.getElementById('modelPill');
const isOpen=pop.classList.toggle('open');
pill.classList.toggle('open',isOpen);
if(isOpen){
pendingConfig={...llmConfig};
renderProviderGrid();selectProvider(pendingConfig.provider);
document.getElementById('apiKeyInput').value=llmConfig.api_key||'';
document.getElementById('customBaseInput').value=llmConfig.base_url||'';
if(window.innerWidth<=600){
const bd=document.createElement('div');
bd.id='modelBackdrop';
bd.style.cssText='position:fixed;inset:0;background:rgba(0,0,0,0.45);z-index:499';
bd.addEventListener('click',closeModelPopover);
document.body.appendChild(bd);
}
} else {
closeModelPopover();
}
});
function closeModelPopover(){
document.getElementById('modelPopover').classList.remove('open');
document.getElementById('modelPill').classList.remove('open');
const bd=document.getElementById('modelBackdrop');
if(bd) bd.remove();
}
document.getElementById('popCloseBtn').addEventListener('click',closeModelPopover);
document.addEventListener('click',e=>{
if(!document.getElementById('modelSelector').contains(e.target)){
closeModelPopover();
}
});
document.getElementById('modelSelect').addEventListener('change',e=>{pendingConfig.model=e.target.value;});
document.getElementById('modelCustomInput').addEventListener('input',e=>{pendingConfig.model=e.target.value.trim();});
document.getElementById('applyModelBtn').addEventListener('click',()=>{
const sel=document.getElementById('modelSelect');
const cust=document.getElementById('modelCustomInput');
const p=providers.find(x=>x.id===pendingConfig.provider);
pendingConfig.model=(p&&p.models.length>0)?sel.value:cust.value.trim();
if(!pendingConfig.model){toast('Enter a model id');return;}
llmConfig={
provider: pendingConfig.provider,
model: pendingConfig.model,
api_key: document.getElementById('apiKeyInput').value.trim(),
// Only store base_url for custom provider — for known providers the
// server always uses its own registry URL, so storing it causes stale
// URLs to be sent across provider switches.
base_url: pendingConfig.provider === 'custom'
? document.getElementById('customBaseInput').value.trim()
: '',
};
localStorage.setItem('cortex-llm',JSON.stringify(llmConfig));
updateModelPill();
closeModelPopover();
toast('✓ Using '+(p?p.label:llmConfig.provider)+' · '+llmConfig.model.split('/').pop());
});
loadProviders();
/* INGEST TABS */
document.querySelectorAll('.ingest-tab').forEach(tab=>{
tab.addEventListener('click',()=>{
const sec=tab.dataset.section;
document.querySelectorAll('.ingest-tab').forEach(t=>t.classList.remove('active'));
document.querySelectorAll('.ingest-section').forEach(s=>s.classList.remove('active'));
tab.classList.add('active');
document.getElementById('ingest-section-'+sec).classList.add('active');
});
});
/* FILE UPLOAD */
let selectedFiles=[];
function fmtSize(b){
if(b<1024) return b+'B';
if(b<1048576) return (b/1024).toFixed(1)+'KB';
return (b/1048576).toFixed(1)+'MB';
}
function renderFileList(){
const list=document.getElementById('fileList');
const count=document.getElementById('uploadCount');
const uploadBtn=document.getElementById('uploadBtn');
const clearBtn=document.getElementById('clearFilesBtn');
list.innerHTML=selectedFiles.map((f,i)=>
'<div class="file-item"><span class="file-item-name">'+escHtml(f.name)+'</span><span class="file-item-size">'+fmtSize(f.size)+'</span><button class="file-item-remove" data-i="'+i+'" title="Remove">✕</button></div>'
).join('');
list.querySelectorAll('.file-item-remove').forEach(btn=>{
btn.addEventListener('click',()=>{
selectedFiles.splice(parseInt(btn.dataset.i),1);
renderFileList();
});
});
uploadBtn.disabled=selectedFiles.length===0;
clearBtn.style.display=selectedFiles.length?'':'none';
count.textContent=selectedFiles.length?selectedFiles.length+' file'+(selectedFiles.length>1?'s':'')+' selected':'';
}
function addFiles(newFiles){
const allowed=new Set(['.pdf','.html','.htm','.txt','.md']);
Array.from(newFiles).forEach(f=>{
const ext=f.name.slice(f.name.lastIndexOf('.')).toLowerCase();
if(!allowed.has(ext)){toast('Skipped '+f.name+' — unsupported type');return;}
if(!selectedFiles.find(x=>x.name===f.name&&x.size===f.size)) selectedFiles.push(f);
});
renderFileList();
}
const dropZone=document.getElementById('dropZone');
const fileInput=document.getElementById('fileInput');
dropZone.addEventListener('click',()=>fileInput.click());
fileInput.addEventListener('change',()=>{addFiles(fileInput.files);fileInput.value='';});
dropZone.addEventListener('dragover',e=>{e.preventDefault();dropZone.classList.add('drag-over');});
dropZone.addEventListener('dragleave',()=>dropZone.classList.remove('drag-over'));
dropZone.addEventListener('drop',e=>{
e.preventDefault();dropZone.classList.remove('drag-over');
addFiles(e.dataTransfer.files);
});
document.getElementById('clearFilesBtn').addEventListener('click',()=>{selectedFiles=[];renderFileList();});
document.getElementById('uploadBtn').addEventListener('click',async()=>{
if(!selectedFiles.length) return;
const btn=document.getElementById('uploadBtn');
const prog=document.getElementById('uploadProgress');
const res=document.getElementById('ingestResult');
btn.disabled=true;btn.textContent='uploading…';prog.style.display='block';res.style.display='none';
const form=new FormData();
selectedFiles.forEach(f=>form.append('files',f,f.name));
try{
const r=await fetch('/ingest/upload',{method:'POST',body:form});
if(!r.ok){const e=await r.json();throw new Error(e.detail||'Upload failed');}
const d=await r.json();
prog.style.display='none';res.style.display='block';
showIngestResult(d,'upload: '+selectedFiles.map(f=>f.name).join(', '));
selectedFiles=[];renderFileList();checkHealth();
}catch(err){
prog.style.display='none';
toast('Error: '+err.message);
btn.disabled=false;btn.textContent='upload & ingest';
}
btn.disabled=false;btn.textContent='upload & ingest';
});
/* SERVER PATH INGEST */
document.getElementById('ingestBtn').addEventListener('click',async()=>{
const path=document.getElementById('ingestPath').value.trim();
if(!path){toast('Enter a server path first');return;}
const recursive=document.getElementById('ingestRecursive').checked;
const btn=document.getElementById('ingestBtn');
const prog=document.getElementById('ingestProgress');
const res=document.getElementById('ingestResult');
btn.disabled=true;btn.textContent='running…';prog.style.display='block';res.style.display='none';
try{
const r=await fetch('/ingest',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({path,recursive})});
const d=await r.json();
prog.style.display='none';res.style.display='block';
showIngestResult(d,path);checkHealth();
}catch(err){prog.style.display='none';toast('Error: '+err.message);}
btn.disabled=false;btn.textContent='run ingestion';
});
function showIngestResult(d,label){
const res=document.getElementById('ingestResult');
res.style.display='block';
const errHtml=(d.errors||[]).map(e=>'<div class="error-row">⚠ '+escHtml(e.source)+': '+escHtml(e.error)+'</div>').join('');
res.innerHTML='<h4>ingestion complete</h4><div class="stat-grid"><div class="stat-cell"><div class="stat-val">'+d.documents_processed+'</div><div class="stat-key">DOCS</div></div><div class="stat-cell"><div class="stat-val">'+d.chunks_stored+'</div><div class="stat-key">CHUNKS</div></div><div class="stat-cell"><div class="stat-val">'+(d.bm25_indexed||0)+'</div><div class="stat-key">BM25</div></div><div class="stat-cell"><div class="stat-val">'+d.documents_skipped+'</div><div class="stat-key">SKIPPED</div></div><div class="stat-cell"><div class="stat-val">'+(d.graph_entities||0)+'</div><div class="stat-key">ENTITIES</div></div><div class="stat-cell"><div class="stat-val">'+(d.graph_triples||0)+'</div><div class="stat-key">TRIPLES</div></div></div>'+(errHtml?'<div style="margin-top:9px">'+errHtml+'</div>':'');
const ll=document.getElementById('ingestLogList');
const le=document.createElement('div');le.className='log-entry';
le.innerHTML='<span class="log-ts">'+new Date().toLocaleTimeString()+'</span>'+escHtml(label.slice(0,60))+' → '+d.chunks_stored+' chunks';
ll.prepend(le);
toast('✓ '+d.documents_processed+' docs, '+d.chunks_stored+' chunks');
}
/* EVAL */
document.getElementById('refreshMetrics').addEventListener('click',loadMetrics);
document.getElementById('flushCache').addEventListener('click',async()=>{
try{const r=await fetch('/cache/flush',{method:'POST'});const d=await r.json();toast('Cache flushed — '+d.deleted+' entries');loadMetrics();}catch{toast('Flush failed');}
});
async function loadMetrics(){
const body=document.getElementById('evalBody');
body.innerHTML='<div style="color:var(--muted);font-family:var(--mono);font-size:12px;padding:40px 0;text-align:center">loading…</div>';
try{const r=await fetch('/metrics?limit=50&days=14');const d=await r.json();renderEvalDashboard(d);}
catch(err){body.innerHTML='<div style="color:var(--red);font-family:var(--mono);font-size:12px;padding:40px 0;text-align:center">Error: '+escHtml(err.message)+'</div>';}
}
function renderEvalDashboard(d){
const body=document.getElementById('evalBody');
const s=d.summary||{};const cache=d.cache||{};const recent=d.recent||[];
const grades=s.crag_grade_dist||{};const totalG=Object.values(grades).reduce((a,b)=>a+b,0)||1;
const fmt=v=>(v!=null&&!isNaN(v))?Number(v).toFixed(2):'—';
const kpi='<div class="kpi-row"><div class="kpi-card"><div class="kpi-val amber">'+(s.total_queries??0)+'</div><div class="kpi-label">QUERIES</div></div><div class="kpi-card"><div class="kpi-val green">'+fmt(s.avg_faithfulness)+'</div><div class="kpi-label">FAITHFULNESS</div></div><div class="kpi-card"><div class="kpi-val blue">'+fmt(s.avg_answer_relevancy)+'</div><div class="kpi-label">RELEVANCY</div></div><div class="kpi-card"><div class="kpi-val">'+fmt(s.avg_context_precision)+'</div><div class="kpi-label">CTX PRECISION</div></div><div class="kpi-card"><div class="kpi-val">'+(s.avg_latency_ms?Math.round(s.avg_latency_ms)+'ms':'—')+'</div><div class="kpi-label">AVG LATENCY</div></div><div class="kpi-card"><div class="kpi-val '+(cache.enabled?'green':'')+'">'+( cache.enabled?Math.round((cache.hit_rate||0)*100)+'%':'off')+'</div><div class="kpi-label">CACHE HIT</div></div></div>';
const mbars=[['faithfulness',s.avg_faithfulness,'#34d399'],['answer_relevancy',s.avg_answer_relevancy,'#60a5fa'],['ctx_precision',s.avg_context_precision,'#a78bfa'],['chunk_score',s.avg_chunk_score,'#f59e0b']].map(([name,val,color])=>{
const pct=val!=null?Math.round(val*100):0;
return '<div class="metric-row"><span class="metric-name">'+name+'</span><div class="metric-bar-wrap"><div class="metric-bar" style="width:'+pct+'%;background:'+color+'"></div></div><span class="metric-num">'+fmt(val)+'</span></div>';
}).join('');
const gbars=['GOOD','POOR','ABSENT'].map(g=>{
const cnt=grades[g]||0;const pct=Math.round((cnt/totalG)*100);
return '<div class="grade-row"><span class="grade-label">'+g+'</span><div class="grade-bar-wrap"><div class="grade-bar '+g.toLowerCase()+'" style="width:'+pct+'%">'+(cnt||'')+'</div></div></div>';
}).join('');
const cacheInfo=cache.enabled?'<div class="cache-row"><div class="cache-stat">'+(cache.hits??0)+'<span>HITS</span></div><div class="cache-stat">'+(cache.misses??0)+'<span>MISSES</span></div><div class="cache-stat">'+(cache.ttl_s?Math.round(cache.ttl_s/60)+'m':'—')+'<span>TTL</span></div></div>':'<span style="color:var(--muted);font-family:var(--mono);font-size:11px">Redis not connected</span>';
const stratDist=s.strategy_dist||{};const stTotal=Object.values(stratDist).reduce((a,b)=>a+b,0)||1;
const stratBars=Object.entries(stratDist).map(([k,v])=>{
let label=k;try{label=JSON.parse(k).join('+').toUpperCase();}catch{}
const pct=Math.round((v/stTotal)*100);
return '<div class="grade-row"><span class="grade-label" style="width:78px;overflow:hidden;text-overflow:ellipsis">'+escHtml(label)+'</span><div class="grade-bar-wrap"><div class="grade-bar good" style="width:'+pct+'%">'+v+'</div></div></div>';
}).join('')||'<span style="color:var(--muted);font-size:11px">No data</span>';
const gc={GOOD:'green',POOR:'amber',ABSENT:'red'};
const tableRows=recent.slice(0,30).map(r=>'<tr><td class="query-col" title="'+escHtml(r.query)+'">'+escHtml(r.query)+'</td><td class="mono" style="font-size:10px;color:var(--muted)">'+(r.intent||'—')+'</td><td>'+(r.crag_grade?'<span class="badge badge-'+(gc[r.crag_grade]||'muted')+'" style="font-size:9px">'+escHtml(r.crag_grade)+'</span>':'—')+'</td><td class="'+(r.faithfulness!=null?'mono':'na')+'">'+fmt(r.faithfulness)+'</td><td class="'+(r.answer_relevancy!=null?'mono':'na')+'">'+fmt(r.answer_relevancy)+'</td><td class="mono" style="color:var(--muted)">'+(r.latency_ms?Math.round(r.latency_ms)+'ms':'—')+'</td></tr>').join('');
body.innerHTML=kpi+'<div class="eval-grid"><div class="eval-card"><h4>ragas metrics</h4>'+(mbars||'<span style="color:var(--muted);font-size:11px">No data yet</span>')+'</div><div class="eval-card"><h4>crag grade distribution</h4><div class="grade-bars">'+gbars+'</div></div><div class="eval-card"><h4>cache</h4>'+cacheInfo+'</div><div class="eval-card"><h4>retrieval strategy mix</h4><div class="grade-bars">'+stratBars+'</div></div></div><div class="query-table-wrap"><h4>recent queries</h4>'+(tableRows?'<table><thead><tr><th>Query</th><th>Intent</th><th>CRAG</th><th>Faithful</th><th>Relevancy</th><th>Latency</th></tr></thead><tbody>'+tableRows+'</tbody></table>':'<div style="padding:16px;color:var(--muted);font-family:var(--mono);font-size:12px">No queries yet.</div>')+'</div>';
}
/* SYSTEM */
document.getElementById('refreshSystem').addEventListener('click',loadHealth);
async function loadHealth(){
const body=document.getElementById('systemBody');
try{
const r=await fetch('/health');const d=await r.json();
const cs=d.collection_stats||{};const gs=d.graph_stats||{};
body.innerHTML='<div class="system-grid"><div class="system-card"><div class="sys-name">STATUS</div><div class="sys-val" style="color:'+(d.status==='ok'?'var(--green)':'var(--red)')+'">'+d.status+'</div></div><div class="system-card"><div class="sys-name">MILVUS</div><div class="sys-val" style="color:'+(d.milvus==='ok'?'var(--green)':'var(--red)')+'">'+( d.milvus==='ok'?'●':'✕')+'</div><div class="sys-sub">'+(cs.entity_count??0)+' chunks</div></div><div class="system-card"><div class="sys-name">EMBEDDER</div><div class="sys-val" style="color:'+(d.embedder==='loaded'?'var(--green)':'var(--amber)')+'">'+escHtml(d.embedder)+'</div></div><div class="system-card"><div class="sys-name">GRAPH NODES</div><div class="sys-val">'+(gs.nodes??'—')+'</div><div class="sys-sub">'+(gs.edges??0)+' edges · '+escHtml(gs.extractor??'—')+'</div></div><div class="system-card"><div class="sys-name">COLLECTION</div><div class="sys-val" style="font-size:13px">'+escHtml(cs.collection??'—')+'</div></div><div class="system-card"><div class="sys-name">CHUNKS</div><div class="sys-val" style="color:var(--amber)">'+(cs.entity_count??0)+'</div></div></div><div class="json-block">'+escHtml(JSON.stringify(d,null,2))+'</div>';
}catch(err){body.innerHTML='<div style="color:var(--red);font-family:var(--mono);font-size:12px;padding:40px 0;text-align:center">Error: '+escHtml(err.message)+'</div>';}
} |