chatbot-template/lib/ai/models.ts

22 lines
484 B
TypeScript
Raw Normal View History

export const DEFAULT_CHAT_MODEL: string = 'chat-model';
export interface ChatModel {
2024-10-30 16:01:24 +05:30
id: string;
name: string;
2024-10-30 16:01:24 +05:30
description: string;
}
2024-10-30 16:01:24 +05:30
export const chatModels: Array<ChatModel> = [
2024-10-30 16:01:24 +05:30
{
id: 'chat-model',
name: 'Grok Vision',
description: 'Advanced multimodal model with vision and text capabilities',
2024-10-30 16:01:24 +05:30
},
{
id: 'chat-model-reasoning',
name: 'Grok Reasoning',
2025-09-09 15:44:07 -04:00
description:
'Uses advanced chain-of-thought reasoning for complex problems',
},
];