Restore Ultracite + fix sidebar (#1233)
This commit is contained in:
parent
8fbfc253fa
commit
947ed094a6
177 changed files with 6908 additions and 8306 deletions
|
|
@ -1,21 +1,21 @@
|
|||
export const DEFAULT_CHAT_MODEL: string = 'chat-model';
|
||||
export const DEFAULT_CHAT_MODEL: string = "chat-model";
|
||||
|
||||
export interface ChatModel {
|
||||
export type ChatModel = {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
}
|
||||
};
|
||||
|
||||
export const chatModels: Array<ChatModel> = [
|
||||
export const chatModels: ChatModel[] = [
|
||||
{
|
||||
id: 'chat-model',
|
||||
name: 'Grok Vision',
|
||||
description: 'Advanced multimodal model with vision and text capabilities',
|
||||
id: "chat-model",
|
||||
name: "Grok Vision",
|
||||
description: "Advanced multimodal model with vision and text capabilities",
|
||||
},
|
||||
{
|
||||
id: 'chat-model-reasoning',
|
||||
name: 'Grok Reasoning',
|
||||
id: "chat-model-reasoning",
|
||||
name: "Grok Reasoning",
|
||||
description:
|
||||
'Uses advanced chain-of-thought reasoning for complex problems',
|
||||
"Uses advanced chain-of-thought reasoning for complex problems",
|
||||
},
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue