-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.Net: Bug: o3-mini cannot be used with OpenAIAssistantAgent #10594
Comments
+1, I have the same message |
Hi team, do you have any update on this or at least an idea how to mitigate this issue until there is a proper fix? thanks |
The latest package may address this as we've updated our approach on option handling. I'll review this scenario with the current changes. |
I've verified Sample: Step01_Assistant.cs against |
YEs working for us alos - thank you |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
To create an Assistant API-based system using OpenAI directly you need to use the OpenAIAssistantAgent entity, which takes an OpenAIAssistantDefinition, which takes a string for the model's ID.
In the background a "temperature" parameter (as well as a "top_p" parameter) seems to always be added. The problem is that the new o3 family doesn't allow these parameters to exist at all.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A response. The model works fine in platform.openai.com --> Playground
Error message
Unsupported parameter: 'temperature' is not supported with this model.
Platform
o3-mini
Additional context
Passing
Temperature = null
in the assistandDefinition didn't solve anything.The text was updated successfully, but these errors were encountered: