support disabling providers from automatically being added
publish / publish (push) Has been cancelled

This commit is contained in:
Dax Raad
2025-06-17 12:23:04 -04:00
parent 04ea736dc2
commit 42f1d9b0d8
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -9,6 +9,7 @@ export namespace GlobalConfig {
autoshare: z.boolean().optional(),
provider: z.string().optional(),
model: z.string().optional(),
disabled_providers: z.array(z.string()).optional(),
})
export type Info = z.infer<typeof Info>