'use client'; const getClientConfig = (key: string, defaultVal?: any) => { return localStorage.getItem(key) ?? defaultVal ?? undefined; }; export const getTheme = () => getClientConfig('theme', 'dark'); export const getAutoMediaSearch = () => getClientConfig('autoMediaSearch', 'true') === 'true'; export const getSystemInstructions = () => getClientConfig('systemInstructions', '');