diff --git a/benchmarks/.DS_Store b/benchmarks/.DS_Store
index 15b5bd44..b4d6cfce 100644
Binary files a/benchmarks/.DS_Store and b/benchmarks/.DS_Store differ
diff --git a/control-plane/src/components/documents-view.tsx b/control-plane/src/components/documents-view.tsx
index 630e344d..f209855d 100644
--- a/control-plane/src/components/documents-view.tsx
+++ b/control-plane/src/components/documents-view.tsx
@@ -62,7 +62,7 @@ export function DocumentsView() {
type="text"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
- placeholder="Search documents (ID, metadata)..."
+ placeholder="Search documents (ID)..."
className="w-full max-w-2xl px-2.5 py-2 mb-4 mx-5 border-2 border-border bg-background text-foreground rounded text-sm focus:outline-none focus:ring-2 focus:ring-ring"
/>
@@ -75,7 +75,6 @@ export function DocumentsView() {
Updated |
Text Length |
Memory Units |
- Metadata |
Actions |
@@ -94,11 +93,6 @@ export function DocumentsView() {
{doc.text_length?.toLocaleString()} chars |
{doc.memory_unit_count} |
-
- {Object.keys(doc.metadata || {}).length > 0
- ? JSON.stringify(doc.metadata).substring(0, 50) + '...'
- : 'None'}
- |
|