feat: forward provider options from model config (#202)
publish / publish (push) Has been cancelled

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 0419533097
commit a3c73c4322
3 changed files with 18 additions and 10 deletions
+2
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",