vision-agent / state /index.ts
MingruiZhang's picture
feat: Component UI and lastUpdated timestamp (#21)
bfbf1a7 unverified
raw
history blame
302 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[]>([]);
export const chatViewMode = atom<'chat' | 'chat-all'>('chat');