2025-03-14 19:00:22 -07:00
|
|
|
export const DEFAULT_CHAT_MODEL: string = "chat-model-small";
|
2025-02-03 20:33:15 +05:30
|
|
|
|
|
|
|
|
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-14 19:00:22 -07:00
|
|
|
id: "chat-model-small",
|
|
|
|
|
name: "Small model",
|
|
|
|
|
description: "Small model for fast, lightweight tasks",
|
2024-10-30 16:01:24 +05:30
|
|
|
},
|
|
|
|
|
{
|
2025-03-14 19:00:22 -07:00
|
|
|
id: "chat-model-reasoning",
|
|
|
|
|
name: "Reasoning model",
|
|
|
|
|
description: "Uses advanced reasoning",
|
2025-02-03 20:33:15 +05:30
|
|
|
},
|
|
|
|
|
];
|