add models

This commit is contained in:
Arjun 2026-02-27 23:43:59 +05:30
parent d26b14e873
commit 75b384eac1
4 changed files with 140 additions and 62 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(),
});