From 0528b895b0097460f78956f5874b403a6b15fb8c Mon Sep 17 00:00:00 2001 From: William Valentin Date: Thu, 5 Feb 2026 13:33:50 -0800 Subject: [PATCH] feat: add local_providers to config schema --- src/config/schema.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/schema.ts b/src/config/schema.ts index b24a10b..317cb02 100644 --- a/src/config/schema.ts +++ b/src/config/schema.ts @@ -26,6 +26,7 @@ const modelsSchema = z.object({ default: modelConfigSchema, complex: modelConfigSchema.optional(), fallback_chain: z.array(z.string()).default(['anthropic']), + local_providers: z.record(z.string(), modelConfigSchema).optional(), }); const backendsSchema = z.object({