20 lines
426 B
TypeScript
20 lines
426 B
TypeScript
export const DEFAULT_CHAT_MODEL: string = 'chat-model-small';
|
|
|
|
interface ChatModel {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
}
|
|
|
|
export const chatModels: Array<ChatModel> = [
|
|
{
|
|
id: 'chat-model-small',
|
|
name: 'Small model',
|
|
description: 'Small model for fast, lightweight tasks',
|
|
},
|
|
{
|
|
id: 'chat-model-reasoning',
|
|
name: 'Reasoning model',
|
|
description: 'Uses advanced reasoning',
|
|
},
|
|
];
|