Remove console leak (#4648)

This commit is contained in:
Engel Nyst 2024-10-30 21:33:42 +01:00 committed by GitHub
parent d9e0344619
commit 0ea5dcc781
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,9 +12,6 @@ LOG_LEVEL = os.getenv('LOG_LEVEL', 'INFO').upper()
DEBUG = os.getenv('DEBUG', 'False').lower() in ['true', '1', 'yes']
if DEBUG:
LOG_LEVEL = 'DEBUG'
import litellm
litellm.set_verbose = True
LOG_TO_FILE = os.getenv('LOG_TO_FILE', 'False').lower() in ['true', '1', 'yes']
DISABLE_COLOR_PRINTING = False