mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-22 11:20:15 +01:00
9 lines
281 B
TypeScript
9 lines
281 B
TypeScript
|
|
import { createStorageAtom } from './jotai-utils';
|
||
|
|
|
||
|
|
const DEFAULT_SHOW_THINKING = false;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This atom controls whether AI reasoning/thinking content is expanded by default.
|
||
|
|
*/
|
||
|
|
export const showThinkingAtom = createStorageAtom<boolean>('showThinking', DEFAULT_SHOW_THINKING);
|