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