vision-agent / state /index.ts
MingruiZhang's picture
mutil image selection
93dd66e
raw
history blame
274 Bytes
import { atom } from 'jotai';
export type DatasetImageEntity = {
url: string;
selected: boolean;
name: string;
};
// list of image urls or base64 strings
export const datasetAtom = atom<DatasetImageEntity[]>([]);
// export const selectedImagesAtom = atom<number[]>([]);