Spaces:
Sleeping
Sleeping
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[]>([]); | |
export const chatViewMode = atom<'chat' | 'chat-all'>('chat'); | |