adding support for openai api base

This commit is contained in:
Krrish Dholakia 2023-08-28 06:53:27 -07:00
parent 2096f9c3bf
commit 841ac5ab20
3 changed files with 5 additions and 4 deletions

View file

@ -211,11 +211,9 @@ def completion(
openai.api_type = "openai"
# note: if a user sets a custom base - we should ensure this works
api_base = (
custom_api_base if custom_api_base is not None else litellm.api_base
) # allow for the setting of dynamic and stateful api-bases
openai.api_base = (
api_base if api_base is not None else "https://api.openai.com/v1"
custom_api_base or litellm.api_base or get_secret("OPENAI_API_BASE")
)
openai.api_base = api_base or "https://api.openai.com/v1"
openai.api_version = None
if litellm.organization:
openai.organization = litellm.organization