-
Notifications
You must be signed in to change notification settings - Fork 17k
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[patch]: instantiate clients lazily #29926
base: master
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks reasonable to me, assuming we re-ran the benchmarks and this fixed the issue?
client: Optional[Any] = None, | ||
async_client: Optional[Any] = None, | ||
root_client: Optional[Any] = None, | ||
async_root_client: Optional[Any] = None, | ||
http_client: Optional[Any] = None, | ||
http_async_client: Optional[Any] = None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ooc are these untyped on purpose?
#29925
Simplified version of the change below.
Before:
After:
I'm not sure there is a way to do this that is not semver-breaking. One usage pattern I know breaks is subclasses of BaseChatOpenAI, most of which have unique names for their API keys and other attributes (e.g.,
xai_api_key
,together_api_key
, etc.). These subclasses have post init steps that look like:The check
if not self.client
breaks because we now try to instantiate the client in a property, and this requires that client params be accessible to the property.Current plan is to update classes we control and explain how to update sub-classes in release notes. The update is simple but would be annoying.