This commit is contained in:
Dax Raad
2025-05-28 13:57:02 -04:00
parent f3b224090c
commit afe741b63e
5 changed files with 36 additions and 13 deletions

View File

@@ -22,7 +22,7 @@ export namespace Config {
export const Provider = z.object({
options: z.record(z.string(), z.any()).optional(),
models: z.record(z.string(), Model).optional(),
models: z.record(z.string(), Model),
});
export type Provider = z.output<typeof Provider>;