-
Notifications
You must be signed in to change notification settings - Fork 394
Open
Labels
Description
Reopening this issue here:
#521
I updated the system to pass data using providerOptions, but the Agents Tracing in the OpenAI Platform is showing empty Provider Options passed down.
I even tried both snake and camel casing it but nothing went in

But my Code has this:
{
model: aisdk(google(model)),
modelSettings: {
providerData: {
providerOptions: {
google: {
max_output_tokens: maxOutputTokens,
maxOutputTokens,
thinking_config: {
thinking_budget: thinkingBudget,
include_thoughts: true,
},
thinkingConfig: {
thinkingBudget,
includeThoughts: true,
},
temperature: 0,
},
},
},
},
};