package updates
This commit is contained in:
parent
90e1c8368e
commit
a7706aeaca
10 changed files with 1938 additions and 1733 deletions
|
|
@ -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,18 +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-large',
|
||||
name: 'Large model',
|
||||
description: 'Large model for complex, multi-step tasks',
|
||||
},
|
||||
{
|
||||
id: 'chat-model-reasoning',
|
||||
name: 'Reasoning model',
|
||||
description: 'Uses advanced reasoning',
|
||||
id: "chat-model-reasoning",
|
||||
name: "Reasoning model",
|
||||
description: "Uses advanced reasoning",
|
||||
},
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue