zen: sync

pull/20367/head^2
Frank 2026-04-01 17:41:02 -04:00
parent c9326fc199
commit eabf3caeb9
1 changed files with 4 additions and 1 deletions

View File

@ -54,7 +54,10 @@ export namespace ZenData {
const ModelsSchema = z.object({ const ModelsSchema = z.object({
models: z.record(z.string(), z.union([ModelSchema, z.array(ModelSchema.extend({ formatFilter: FormatSchema }))])), models: z.record(z.string(), z.union([ModelSchema, z.array(ModelSchema.extend({ formatFilter: FormatSchema }))])),
liteModels: z.record(z.string(), ModelSchema), liteModels: z.record(
z.string(),
z.union([ModelSchema, z.array(ModelSchema.extend({ formatFilter: FormatSchema }))]),
),
providers: z.record(z.string(), ProviderSchema), providers: z.record(z.string(), ProviderSchema),
}) })