forked from phoenix/litellm-mirror
fix(openai-proxy-main.py): enable set_verbose empty string
This commit is contained in:
parent
91f691cd8b
commit
a660d88717
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ dotenv.load_dotenv() # load env variables
|
|||
|
||||
def set_callbacks():
|
||||
## LOGGING
|
||||
if len(os.getenv("SET_VERBOSE")) > 0:
|
||||
if len(os.getenv("SET_VERBOSE", "")) > 0:
|
||||
if os.getenv("SET_VERBOSE") == "True":
|
||||
litellm.set_verbose = True
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue