2025-09-20 12:47:10 -07:00
|
|
|
export const DEFAULT_CHAT_MODEL: string = "chat-model";
|
2025-02-03 20:33:15 +05:30
|
|
|
|
2025-09-20 12:47:10 -07:00
|
|
|
export type 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-09-20 12:47:10 -07:00
|
|
|
};
|
2024-10-30 16:01:24 +05:30
|
|
|
|
2025-09-20 12:47:10 -07:00
|
|
|
export const chatModels: ChatModel[] = [
|
2024-10-30 16:01:24 +05:30
|
|
|
{
|
2025-09-20 12:47:10 -07:00
|
|
|
id: "chat-model",
|
|
|
|
|
name: "Grok Vision",
|
|
|
|
|
description: "Advanced multimodal model with vision and text capabilities",
|
2024-10-30 16:01:24 +05:30
|
|
|
},
|
|
|
|
|
{
|
2025-09-20 12:47:10 -07:00
|
|
|
id: "chat-model-reasoning",
|
|
|
|
|
name: "Grok Reasoning",
|
2025-09-09 15:44:07 -04:00
|
|
|
description:
|
2025-09-20 12:47:10 -07:00
|
|
|
"Uses advanced chain-of-thought reasoning for complex problems",
|
2025-02-03 20:33:15 +05:30
|
|
|
},
|
|
|
|
|
];
|