mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
feat: added support for OPENAI_API_BASE
This commit is contained in:
parent
2096f9c3bf
commit
ae52856a62
3 changed files with 7 additions and 5 deletions
|
@ -210,12 +210,11 @@ def completion(
|
|||
): # allow user to make an openai call with a custom base
|
||||
openai.api_type = "openai"
|
||||
# note: if a user sets a custom base - we should ensure this works
|
||||
# allow for the setting of dynamic and stateful api-bases
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue