You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem Statement
Currently, WorkspaceClient enables getting an OpenAI client via .serving_endpoints.get_open_ai_client, which is very convenient. However, it does not support AsyncOpenAI, which enables asynchronous calls to serving endpoints.
Proposed Solution
Add a new method (get_async_open_ai_client) with the same functionality as get_open_ai_client , except returning an AsyncOpenAI instance.
The text was updated successfully, but these errors were encountered:
Problem Statement
Currently,
WorkspaceClient
enables getting anOpenAI
client via.serving_endpoints.get_open_ai_client
, which is very convenient. However, it does not supportAsyncOpenAI
, which enables asynchronous calls to serving endpoints.Proposed Solution
Add a new method (
get_async_open_ai_client
) with the same functionality asget_open_ai_client
, except returning anAsyncOpenAI
instance.The text was updated successfully, but these errors were encountered: