import { atom } from 'jotai' export const stateModel = atom({ state: 'start', loading: false, model: '' }) export const selectedModelAtom = atom(undefined) export const activeAssistantModelAtom = atom( undefined )