Are the differences significant?
{insufficient ? (
@@ -194,7 +194,7 @@ export function ConversationAnalytics({ messages, botName1, botName2, textColor1
{/* Distinctive words */}
{(distinctive.botA.length > 0 || distinctive.botB.length > 0) && (
-
+
Distinctive words
@@ -210,7 +210,7 @@ export function ConversationAnalytics({ messages, botName1, botName2, textColor1
col.words.map((w) => (
{w.word}
diff --git a/src/components/ConversationDisplay.tsx b/src/components/ConversationDisplay.tsx
index ccce8fd..99a27e4 100644
--- a/src/components/ConversationDisplay.tsx
+++ b/src/components/ConversationDisplay.tsx
@@ -99,9 +99,9 @@ export function ConversationDisplay({
const repDivider = showRepDivider ? (
) : null;
@@ -111,7 +111,7 @@ export function ConversationDisplay({
{repDivider}
diff --git a/src/components/DataTable.tsx b/src/components/DataTable.tsx
index dec8694..bcf403f 100644
--- a/src/components/DataTable.tsx
+++ b/src/components/DataTable.tsx
@@ -21,12 +21,12 @@ export function DataTable({ messages, botName1, botName2 }: DataTableProps) {
return (
-
+
{['Conv. ID', 'Time', 'Sender', 'Model', 'Temp', 'Words', 'ms', 'Message'].map(col => (
|
{col}
|
@@ -38,7 +38,7 @@ export function DataTable({ messages, botName1, botName2 }: DataTableProps) {
const sender = m.role === 'user' ? 'You' : (m.botIndex === 1 ? botName1 : botName2);
const isUser = m.role === 'user';
return (
-
+
|
{m.conversationId ? m.conversationId.slice(0, 8) : '—'}
|
diff --git a/src/components/ModelConfig.tsx b/src/components/ModelConfig.tsx
index 8964559..6d784c6 100644
--- a/src/components/ModelConfig.tsx
+++ b/src/components/ModelConfig.tsx
@@ -125,7 +125,7 @@ export function ModelConfig({