vision-agent / state /index.ts
MingruiZhang's picture
fix dataset mapping
3c9f03f
raw
history blame
238 Bytes
import { atom } from 'jotai';
import { DatasetImageEntity } from '../lib/types';
// list of image urls or base64 strings
export const datasetAtom = atom<DatasetImageEntity[]>([]);
// export const selectedImagesAtom = atom<number[]>([]);