This commit is contained in:
Dax Raad
2025-05-28 14:16:56 -04:00
parent 71bab45065
commit 4767276a0e
6 changed files with 42 additions and 56 deletions

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>;