Model switch (#413)

Add ability to switch models in chat
This commit is contained in:
arkml 2026-03-02 21:42:46 +05:30 committed by GitHub
parent d7dc27a77e
commit 5a72ee06e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 444 additions and 93 deletions

View file

@ -10,5 +10,6 @@ export const LlmProvider = z.object({
export const LlmModelConfig = z.object({
provider: LlmProvider,
model: z.string(),
models: z.array(z.string()).optional(),
knowledgeGraphModel: z.string().optional(),
});