feat: add memory candidates viewer with filtering and confidence visualization

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
shahondin1624
2026-03-12 12:33:48 +01:00
parent 5efc5c351c
commit 9ad772f83f
8 changed files with 374 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
const chatHref = resolveRoute('/chat');
const lineageHref = resolveRoute('/lineage');
const memoryHref = resolveRoute('/memory');
</script>
<h1 class="text-3xl font-bold text-center mt-8">LLM Multiverse UI</h1>
@@ -12,4 +13,6 @@
<a href={chatHref} class="rounded-lg bg-blue-600 px-4 py-2 text-sm font-medium text-white hover:bg-blue-700">Chat</a>
<!-- eslint-disable-next-line svelte/no-navigation-without-resolve -- resolveRoute is resolve; plugin does not recognize the alias -->
<a href={lineageHref} class="rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700 hover:bg-gray-200">Agent Lineage</a>
<!-- eslint-disable-next-line svelte/no-navigation-without-resolve -- resolveRoute is resolve; plugin does not recognize the alias -->
<a href={memoryHref} class="rounded-lg bg-gray-100 px-4 py-2 text-sm font-medium text-gray-700 hover:bg-gray-200">Memory Candidates</a>
</nav>