Skip to content

Commit 6e0c976

Browse files
committed
Merge remote-tracking branch 'origin/dev' into llm-ac
2 parents b1e4b35 + fff256b commit 6e0c976

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/types/components/projects/projectId/settings/playground.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,6 @@ export type EvaluationRun = {
2727
metaInfo: any;
2828
}
2929

30-
export enum EvaluationRunState {
31-
INITIATED = 'INITIATED',
32-
RUNNING = 'RUNNING',
33-
SUCCESS = 'SUCCESS',
34-
FAILED = 'FAILED',
35-
}
36-
3730
export type PlaygroundQuestion = {
3831
id: string;
3932
createdAt: string;

src/util/table-preparations/evaluation-runs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { EvaluationRunState } from "@/src/types/components/projects/projectId/settings/playground";
21
import { parseUTC } from "@/submodules/javascript-functions/date-parser";
2+
import { EvaluationRunState } from "@/submodules/react-components/types/evaluationRun";
33

44
export const EVALUATION_RUN_TABLE_HEADER = [{ column: "", id: "checkboxes", hasCheckboxes: true, checked: false }, { column: "Embedding", id: "embedding" }, { column: "Evaluation group", id: "evaluationGroup" }, { column: 'Created At', id: 'createdAt' }, { column: 'Created By', id: 'createdBy' }, { column: "State", id: "state" }, { column: "Run details", id: "runDetails" }];
55
export const EVALUATION_RUN_TABLE_CONFIG = { addBorder: true };

0 commit comments

Comments
 (0)