lazy load LLMs even harder

This commit is contained in:
Dax Raad
2025-05-31 16:05:12 -04:00
parent 3b746162d2
commit f072ab3276
8 changed files with 202 additions and 194 deletions

View File

@@ -14,7 +14,12 @@ export namespace Config {
export const Info = z
.object({
providers: Provider.Info.array().optional(),
provider: Provider.Info.array().optional(),
tool: z
.object({
provider: z.record(z.string(), z.string().array()).optional(),
})
.optional(),
})
.strict()