fix(proxy_server.py): add info statement

This commit is contained in:
Krrish Dholakia 2024-04-08 15:12:56 -07:00
parent 5e46432dfe
commit baed85c2c2

View file

@ -2337,6 +2337,7 @@ class ProxyConfig:
_store_model_in_db = litellm.get_secret( _store_model_in_db = litellm.get_secret(
"STORE_MODEL_IN_DB", None "STORE_MODEL_IN_DB", None
) # feature flag for `/model/new` ) # feature flag for `/model/new`
verbose_proxy_logger.info(f"'STORE_MODEL_IN_DB'={_store_model_in_db}")
if _store_model_in_db is not None and _store_model_in_db == True: if _store_model_in_db is not None and _store_model_in_db == True:
general_settings["store_model_in_db"] = True general_settings["store_model_in_db"] = True
router_params: dict = { router_params: dict = {