mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-02 16:48:50 +01:00
68 lines
2.6 KiB
TypeScript
68 lines
2.6 KiB
TypeScript
|
|
import { clsx } from 'clsx';
|
||
|
|
import { twMerge } from 'tailwind-merge';
|
||
|
|
|
||
|
|
export * from './languages';
|
||
|
|
export { default as getError } from './getError';
|
||
|
|
export { default as buildTree } from './buildTree';
|
||
|
|
export { default as cleanupPreset } from './cleanupPreset';
|
||
|
|
export { default as getDefaultConversation } from './getDefaultConversation';
|
||
|
|
|
||
|
|
export function cn(...inputs: string[]) {
|
||
|
|
return twMerge(clsx(inputs));
|
||
|
|
}
|
||
|
|
|
||
|
|
export const languages = [
|
||
|
|
'java',
|
||
|
|
'c',
|
||
|
|
'markdown',
|
||
|
|
'css',
|
||
|
|
'html',
|
||
|
|
'xml',
|
||
|
|
'bash',
|
||
|
|
'json',
|
||
|
|
'yaml',
|
||
|
|
'jsx',
|
||
|
|
'python',
|
||
|
|
'c++',
|
||
|
|
'javascript',
|
||
|
|
'csharp',
|
||
|
|
'php',
|
||
|
|
'typescript',
|
||
|
|
'swift',
|
||
|
|
'objectivec',
|
||
|
|
'sql',
|
||
|
|
'r',
|
||
|
|
'kotlin',
|
||
|
|
'ruby',
|
||
|
|
'go',
|
||
|
|
'x86asm',
|
||
|
|
'matlab',
|
||
|
|
'perl',
|
||
|
|
'pascal',
|
||
|
|
];
|
||
|
|
|
||
|
|
export const alternateName = {
|
||
|
|
openAI: 'OpenAI',
|
||
|
|
azureOpenAI: 'Azure OpenAI',
|
||
|
|
bingAI: 'Bing',
|
||
|
|
chatGPTBrowser: 'ChatGPT',
|
||
|
|
gptPlugins: 'Plugins',
|
||
|
|
google: 'PaLM',
|
||
|
|
anthropic: 'Anthropic',
|
||
|
|
};
|
||
|
|
|
||
|
|
export const removeFocusOutlines =
|
||
|
|
'focus:outline-none focus:ring-0 focus:ring-opacity-0 focus:ring-offset-0';
|
||
|
|
|
||
|
|
export const cardStyle =
|
||
|
|
'transition-colors rounded-md min-w-[75px] font-normal bg-white border-black/10 hover:border-black/10 focus:border-black/10 dark:border-black/10 dark:hover:border-black/10 dark:focus:border-black/10 border dark:bg-gray-700 text-black dark:text-white';
|
||
|
|
|
||
|
|
export const defaultTextProps =
|
||
|
|
'rounded-md border border-gray-200 focus:border-slate-400 focus:bg-gray-50 bg-transparent text-sm shadow-[0_0_10px_rgba(0,0,0,0.05)] outline-none placeholder:text-gray-400 focus:outline-none focus:ring-gray-400 focus:ring-opacity-20 focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 dark:border-gray-500 dark:bg-gray-700 focus:dark:bg-gray-600 dark:text-gray-50 dark:shadow-[0_0_15px_rgba(0,0,0,0.10)] dark:focus:border-gray-400 dark:focus:outline-none dark:focus:ring-0 dark:focus:ring-gray-400 dark:focus:ring-offset-0';
|
||
|
|
|
||
|
|
export const optionText =
|
||
|
|
'p-0 shadow-none text-right pr-1 h-8 border-transparent focus:ring-[#10a37f] focus:ring-offset-0 focus:ring-opacity-100 hover:bg-gray-800/10 dark:hover:bg-white/10 focus:bg-gray-800/10 dark:focus:bg-white/10 transition-colors';
|
||
|
|
|
||
|
|
export const defaultTextPropsLabel =
|
||
|
|
'rounded-md border border-gray-300 bg-transparent text-sm shadow-[0_0_10px_rgba(0,0,0,0.10)] outline-none placeholder:text-gray-400 focus:outline-none focus:ring-gray-400 focus:ring-opacity-20 focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 dark:border-gray-400 dark:bg-gray-700 dark:text-gray-50 dark:shadow-[0_0_15px_rgba(0,0,0,0.10)] dark:focus:border-gray-400 dark:focus:outline-none dark:focus:ring-0 dark:focus:ring-gray-400 dark:focus:ring-offset-0';
|