fix(utils.py): change error log to be debug

This commit is contained in:
Krrish Dholakia 2024-05-09 13:58:45 -07:00
parent c4295e1667
commit acb615957d

View file

@ -5938,7 +5938,7 @@ def get_api_base(model: str, optional_params: dict) -> Optional[str]:
model=model, **optional_params model=model, **optional_params
) # convert to pydantic object ) # convert to pydantic object
except Exception as e: except Exception as e:
verbose_logger.error("Error occurred in getting api base - {}".format(str(e))) verbose_logger.debug("Error occurred in getting api base - {}".format(str(e)))
return None return None
# get llm provider # get llm provider