fix: default benchmark form values

This commit is contained in:
jialin
2026-02-02 14:10:46 +08:00
parent fc599a0637
commit f651ab7fd9
15 changed files with 188 additions and 53 deletions
+15
View File
@@ -0,0 +1,15 @@
import { atom } from 'jotai';
export const benchmarkTargetInstanceAtom = atom<{
cluster_id: number | null;
model_name: string;
model_id: number | null;
model_instance_name: string;
model_instance: string[];
}>({
cluster_id: null,
model_name: '',
model_id: null,
model_instance_name: '',
model_instance: []
});