export const DEFAULT_CHAT_MODEL: string = 'chat-model-small'; interface ChatModel { id: string; name: string; description: string; } export const chatModels: Array = [ { id: 'chat-model-small', name: 'Small model', description: 'Small model for fast, lightweight tasks', }, { id: 'chat-model-large', name: 'Large model', description: 'Large model for complex, multi-step tasks', }, { id: 'chat-model-reasoning', name: 'Reasoning model', description: 'Uses advanced reasoning', }, ];