rm small suffix, more quote fixes

This commit is contained in:
Walter Korman 2025-03-17 16:58:22 -07:00
parent 6e6cf7830a
commit 4cfe5b90d5
4 changed files with 22 additions and 24 deletions

View file

@ -1,4 +1,4 @@
export const DEFAULT_CHAT_MODEL: string = 'chat-model-small';
export const DEFAULT_CHAT_MODEL: string = 'chat-model';
interface ChatModel {
id: string;
@ -8,9 +8,9 @@ interface ChatModel {
export const chatModels: Array<ChatModel> = [
{
id: 'chat-model-small',
name: 'Small model',
description: 'Small model for fast, lightweight tasks',
id: 'chat-model',
name: 'Chat model',
description: 'Primary model for all-purpose chat',
},
{
id: 'chat-model-reasoning',