This commit is contained in:
Dax Raad
2025-05-28 14:17:02 -04:00
parent 71bab45065
commit 4767276a0e
6 changed files with 42 additions and 56 deletions
+2 -1
View File
@@ -15,8 +15,9 @@ export namespace Config {
outputCached: z.number(),
}),
contextWindow: z.number(),
maxTokens: z.number(),
maxTokens: z.number().optional(),
attachment: z.boolean(),
reasoning: z.boolean().optional(),
});
export type Model = z.output<typeof Model>;