diff --git a/app/components/ConfigCard.tsx b/app/components/ConfigCard.tsx index 004eeb01..0edb8380 100644 --- a/app/components/ConfigCard.tsx +++ b/app/components/ConfigCard.tsx @@ -252,15 +252,19 @@ export default function ConfigCard({ {latestVersion.modelName} -
| + | {index + 1} | @@ -230,14 +227,7 @@ export default function DetailedResultsTable({ className="px-4 py-3 align-top" style={{ backgroundColor: "#fafafa" }} > -
-
+
{answer}
|
@@ -487,28 +463,14 @@ function GroupedResultsTable({ traces }: { traces: GroupedTraceItem[] }) {
{/* Question */}
-
+
{group.question}
|
{/* Ground Truth */}
-
-
+
-
+ |
@@ -522,7 +484,7 @@ function GroupedResultsTable({ traces }: { traces: GroupedTraceItem[] }) {
className="px-4 pt-3 pb-1 align-top"
>
{answer ? (
-
{group.ground_truth_answer}
+
{answer}
) : (
diff --git a/app/components/prompt-editor/DiffView.tsx b/app/components/prompt-editor/DiffView.tsx
index d9b73af8..928ed72e 100644
--- a/app/components/prompt-editor/DiffView.tsx
+++ b/app/components/prompt-editor/DiffView.tsx
@@ -341,20 +341,22 @@ export default function DiffView({
{selectedCommit.modelName}
-
- Temperature
-
-
- {selectedCommit.temperature}
+ {selectedCommit.temperature != null && (
+
+ )}
{selectedCommit.tools &&
selectedCommit.tools.length > 0 && (
+
-
+ Temperature
+
+
+ {selectedCommit.temperature}
+
|