mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-03-12 19:12:36 +01:00
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
|
|
import { TranslationKeys } from '~/hooks/useLocalize';
|
||
|
|
|
||
|
|
export interface AgentCategory {
|
||
|
|
label: TranslationKeys;
|
||
|
|
value: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
// The empty category placeholder - used for form defaults
|
||
|
|
export const EMPTY_AGENT_CATEGORY: AgentCategory = {
|
||
|
|
value: '',
|
||
|
|
label: 'com_ui_agent_category_general',
|
||
|
|
};
|