mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-24 20:30:13 +01:00
* fix: remove double initialization of speech routes * refactor(useMessageHelpers): more consistent latestMessage updates based on unique textKey and early returns when setting * feat: TTS/STT rate limiters * chore: remove console log * fix: make modular chat true by default
77 lines
3.2 KiB
TypeScript
77 lines
3.2 KiB
TypeScript
import { atom } from 'recoil';
|
|
import { SettingsViews } from 'librechat-data-provider';
|
|
import type { TOptionSettings } from '~/common';
|
|
|
|
// Improved helper function to create atoms with localStorage
|
|
function atomWithLocalStorage<T>(key: string, defaultValue: T) {
|
|
return atom<T>({
|
|
key,
|
|
default: defaultValue,
|
|
effects_UNSTABLE: [
|
|
({ setSelf, onSet }) => {
|
|
const savedValue = localStorage.getItem(key);
|
|
if (savedValue !== null) {
|
|
try {
|
|
const parsedValue = JSON.parse(savedValue);
|
|
setSelf(parsedValue);
|
|
} catch (e) {
|
|
console.error(
|
|
`Error parsing localStorage key "${key}", \`savedValue\`: defaultValue, error:`,
|
|
e,
|
|
);
|
|
localStorage.setItem(key, JSON.stringify(defaultValue));
|
|
setSelf(defaultValue);
|
|
}
|
|
}
|
|
|
|
onSet((newValue: T) => {
|
|
localStorage.setItem(key, JSON.stringify(newValue));
|
|
});
|
|
},
|
|
],
|
|
});
|
|
}
|
|
|
|
// Static atoms without localStorage
|
|
const staticAtoms = {
|
|
abortScroll: atom<boolean>({ key: 'abortScroll', default: false }),
|
|
showFiles: atom<boolean>({ key: 'showFiles', default: false }),
|
|
optionSettings: atom<TOptionSettings>({ key: 'optionSettings', default: {} }),
|
|
showPluginStoreDialog: atom<boolean>({ key: 'showPluginStoreDialog', default: false }),
|
|
showAgentSettings: atom<boolean>({ key: 'showAgentSettings', default: false }),
|
|
currentSettingsView: atom<SettingsViews>({
|
|
key: 'currentSettingsView',
|
|
default: SettingsViews.default,
|
|
}),
|
|
showBingToneSetting: atom<boolean>({ key: 'showBingToneSetting', default: false }),
|
|
showPopover: atom<boolean>({ key: 'showPopover', default: false }),
|
|
};
|
|
|
|
// Atoms with localStorage
|
|
const localStorageAtoms = {
|
|
autoScroll: atomWithLocalStorage('autoScroll', false),
|
|
showCode: atomWithLocalStorage('showCode', false),
|
|
hideSidePanel: atomWithLocalStorage('hideSidePanel', false),
|
|
modularChat: atomWithLocalStorage('modularChat', true),
|
|
LaTeXParsing: atomWithLocalStorage('LaTeXParsing', true),
|
|
UsernameDisplay: atomWithLocalStorage('UsernameDisplay', true),
|
|
TextToSpeech: atomWithLocalStorage('textToSpeech', true),
|
|
automaticPlayback: atomWithLocalStorage('automaticPlayback', false),
|
|
enterToSend: atomWithLocalStorage('enterToSend', true),
|
|
SpeechToText: atomWithLocalStorage('speechToText', true),
|
|
conversationMode: atomWithLocalStorage('conversationMode', false),
|
|
advancedMode: atomWithLocalStorage('advancedMode', false),
|
|
autoSendText: atomWithLocalStorage('autoSendText', false),
|
|
autoTranscribeAudio: atomWithLocalStorage('autoTranscribeAudio', false),
|
|
decibelValue: atomWithLocalStorage('decibelValue', -45),
|
|
endpointSTT: atomWithLocalStorage('endpointSTT', 'browser'),
|
|
endpointTTS: atomWithLocalStorage('endpointTTS', 'browser'),
|
|
cacheTTS: atomWithLocalStorage('cacheTTS', true),
|
|
voice: atomWithLocalStorage('voice', ''),
|
|
forkSetting: atomWithLocalStorage('forkSetting', ''),
|
|
splitAtTarget: atomWithLocalStorage('splitAtTarget', false),
|
|
rememberForkOption: atomWithLocalStorage('rememberForkOption', true),
|
|
playbackRate: atomWithLocalStorage<number | null>('playbackRate', null),
|
|
};
|
|
|
|
export default { ...staticAtoms, ...localStorageAtoms };
|