import { Model } from '@janhq/core/lib/types' import { atom } from 'jotai' export const stateModel = atom({ state: 'start', loading: false, model: '' }) export const selectedModelAtom = atom(undefined) export const activeModelAtom = atom( undefined ) export const downloadingModelsAtom = atom([])