- {item.commit_message}
+
+
)}
@@ -93,7 +93,6 @@ function VersionRow({
);
}
-// Single-config version history (when a config is loaded in the editor)
interface SingleConfigHistoryProps {
configId: string;
configName: string;
diff --git a/app/lib/types/commit.ts b/app/lib/types/commit.ts
new file mode 100644
index 00000000..b066c5e4
--- /dev/null
+++ b/app/lib/types/commit.ts
@@ -0,0 +1,12 @@
+export interface ParsedCommit {
+ isAIGenerated: boolean;
+ fromVersion?: number;
+ evaluation?: string;
+ body: string;
+}
+
+export interface CommitMessageProps {
+ message: string | null | undefined;
+ className?: string;
+ compact?: boolean;
+}
From 1bb9036207d40a897032406fea1cf6d2d993759b Mon Sep 17 00:00:00 2001
From: Ayush8923 <80516839+Ayush8923@users.noreply.github.com>
Date: Wed, 1 Jul 2026 20:06:54 +0530
Subject: [PATCH 2/4] fix(evlas): added the markdown component which is
geenrate via llm
---
app/components/evaluations/DetailedResultsTable.tsx | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/app/components/evaluations/DetailedResultsTable.tsx b/app/components/evaluations/DetailedResultsTable.tsx
index 20cebfcc..b2956aec 100644
--- a/app/components/evaluations/DetailedResultsTable.tsx
+++ b/app/components/evaluations/DetailedResultsTable.tsx
@@ -16,6 +16,7 @@ import {
import { formatScoreValue, getScoreByName } from "@/app/lib/utils";
import { InfoTooltip } from "@/app/components/ui";
import { GroupedResultsTable } from "@/app/components/evaluations";
+import { MarkdownContent } from "@/app/components/chat";
interface DetailedResultsTableProps {
job: EvalJob;
@@ -175,7 +176,10 @@ export default function DetailedResultsTable({
- {answer}
+
|
From d33163b4bacc5e9fc488ae6a76738cd817569b64 Mon Sep 17 00:00:00 2001
From: Ayush8923 <80516839+Ayush8923@users.noreply.github.com>
Date: Wed, 1 Jul 2026 20:09:12 +0530
Subject: [PATCH 3/4] fix(evals): added the score as a pill
---
app/components/evaluations/DetailedResultsTable.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/components/evaluations/DetailedResultsTable.tsx b/app/components/evaluations/DetailedResultsTable.tsx
index b2956aec..8d6a9a2c 100644
--- a/app/components/evaluations/DetailedResultsTable.tsx
+++ b/app/components/evaluations/DetailedResultsTable.tsx
@@ -194,7 +194,7 @@ export default function DetailedResultsTable({
>
Date: Wed, 1 Jul 2026 20:56:11 +0530
Subject: [PATCH 4/4] fix(evals): added the loader
---
app/(main)/evaluations/[id]/page.tsx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/app/(main)/evaluations/[id]/page.tsx b/app/(main)/evaluations/[id]/page.tsx
index 66a6d0bd..f4f4f27b 100644
--- a/app/(main)/evaluations/[id]/page.tsx
+++ b/app/(main)/evaluations/[id]/page.tsx
@@ -49,7 +49,6 @@ import {
DatabaseIcon,
GroupIcon,
DownloadIcon,
- SpinnerIcon,
} from "@/app/components/icons";
export default function EvaluationReport() {
@@ -408,7 +407,7 @@ export default function EvaluationReport() {
: undefined
}
>
- {isImprovingPrompt && }
+ {isImprovingPrompt && }
{isImprovingPrompt ? "Iterating..." : "Iterate on Prompt"}