20 lines
415 B
TypeScript
20 lines
415 B
TypeScript
export const DEFAULT_CHAT_MODEL: string = 'chat-model';
|
|
|
|
export interface ChatModel {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
}
|
|
|
|
export const chatModels: Array<ChatModel> = [
|
|
{
|
|
id: 'chat-model',
|
|
name: 'Chat model',
|
|
description: 'Primary model for all-purpose chat',
|
|
},
|
|
{
|
|
id: 'chat-model-reasoning',
|
|
name: 'Reasoning model',
|
|
description: 'Uses advanced reasoning',
|
|
},
|
|
];
|