fix quotes

This commit is contained in:
Walter Korman 2025-03-17 16:54:40 -07:00
parent fb3e01981e
commit 6e6cf7830a
2 changed files with 26 additions and 26 deletions

View file

@ -1,4 +1,4 @@
export const DEFAULT_CHAT_MODEL: string = "chat-model-small";
export const DEFAULT_CHAT_MODEL: string = 'chat-model-small';
interface ChatModel {
id: string;
@ -8,13 +8,13 @@ interface ChatModel {
export const chatModels: Array<ChatModel> = [
{
id: "chat-model-small",
name: "Small model",
description: "Small model for fast, lightweight tasks",
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",
id: 'chat-model-reasoning',
name: 'Reasoning model',
description: 'Uses advanced reasoning',
},
];