-
Notifications
You must be signed in to change notification settings - Fork 183
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
openai and litellm version confilicts #394
Comments
@zhaochenyang20: in |
Yeah. Make sense to me, but I personally think that we need to keep pace with the latest version of |
I think this has become more important now. I was trying to use base model as |
Hey I'm gonna take a crack at fixing this, hopefully this weekend! It's definitely something we can't ignore |
In the
project.toml
, we do not require a specific version ofopenai
andlitellm
. If a user directly runspip install .
, then the newest version ofopenai
may not supportimport openai.error
. However, we use this in ourapi_tools.py
. If we choose to use a lower version ofopenai
, it is not supported bylitellm
. Thus we need to refactor ourapi_tools.py
to support new version ofopenai
andlitellm
.The text was updated successfully, but these errors were encountered: