feat: forward provider options from model config (#202)

Co-authored-by: Dax Raad <d@ironbay.co>
This commit is contained in:
Josh
2025-06-20 14:03:41 -05:00
committed by GitHub
parent 91c4da5dbd
commit 9991352663
3 changed files with 18 additions and 10 deletions

View File

@@ -13,6 +13,7 @@ export namespace ModelsDev {
attachment: z.boolean(),
reasoning: z.boolean(),
temperature: z.boolean(),
tool_call: z.boolean(),
cost: z.object({
input: z.number(),
output: z.number(),
@@ -24,6 +25,7 @@ export namespace ModelsDev {
output: z.number(),
}),
id: z.string(),
options: z.record(z.any()),
})
.openapi({
ref: "Model.Info",