Files
atc-agents/ui/index.html
T
mo f080c242de Knowledge Chat: spread pipeline nodes full-width, add self-hosted Trace Viewer + favicon
- RAG pipeline nodes now distribute across the row with flex-grow connectors (longer flowing lines)
- New Traces modal: list recent runs with stage timeline, retrieved chunks, prompt, answer (local LangSmith-style observability)
- Add topology-style SVG favicon
2026-06-28 12:48:52 +00:00

17 lines
711 B
HTML

<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>ATC Data & AI Command Center</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet" />
</head>
<body class="antialiased">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>