import { atom } from 'recoil'; import { TOptionSettings } from 'librechat-data-provider'; const optionSettings = atom({ key: 'optionSettings', default: {}, }); const showPluginStoreDialog = atom({ key: 'showPluginStoreDialog', default: false, }); const showAgentSettings = atom({ key: 'showAgentSettings', default: false, }); const showBingToneSetting = atom({ key: 'showBingToneSetting', default: false, }); const showPopover = atom({ key: 'showPopover', default: false, }); export default { optionSettings, showPluginStoreDialog, showAgentSettings, showBingToneSetting, showPopover, };