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
Do you plan on adding support for customizing openai API setting?
More specifically, will it be possible to control the openai api_type and api_base properties to run against Azure OpenAI? Similarly to how this is done when using the openai package directly:
importopenai# This is set to `azure`openai.api_type="azure"# The API key for your Azure OpenAI resource.openai.api_key=os.getenv("OPENAI_API_KEY")
# The base URL for your Azure OpenAI resource. e.g. "https://<your resource name>.openai.azure.com"openai.api_base=os.getenv(" OPENAI_API_BASE ")
# OpenAI API Versionopenai.api_version=os.getenv(" OPENAI_API_VERSION")
The text was updated successfully, but these errors were encountered:
Do you plan on adding support for customizing openai API setting?
More specifically, will it be possible to control the openai api_type and api_base properties to run against Azure OpenAI? Similarly to how this is done when using the
openai
package directly:The text was updated successfully, but these errors were encountered: