vectorless
diff --git a/apps/web/components/playground/ChatThread.tsx b/apps/web/components/playground/ChatThread.tsx
index 2af5efd..c6f794b 100644
--- a/apps/web/components/playground/ChatThread.tsx
+++ b/apps/web/components/playground/ChatThread.tsx
@@ -29,16 +29,17 @@ function CitationItem({ c }: { c: Citation }) {
{pages}
)}
+ {c.sectionIds && c.sectionIds.length > 0 && (
+
+ {c.sectionIds.length} section{c.sectionIds.length === 1 ? "" : "s"}
+
+ )}
- {c.quote ? (
+ {c.quote && (
“{c.quote}”
- ) : (
-
- Cited {c.sectionIds?.length ?? 0} section(s).
-
)}
);
@@ -59,7 +60,12 @@ function AssistantBubble({ m }: { m: AssistantMessage }) {
)}
- {m.answer && }
+ {m.answer && (
+
+ )}
{m.status === "error" && (