Loading request...
Currently, the package prints a message on import which cannot be configured or disabled. It would be better to limit code that runs on import to a minimum or provide a way to configure this behavior.
This print statement runs on import, with no option to configure or disable it: ```python >>> import rerankers Torch not installed... ``` May I kindly request to not print on import, or to make printing configurable? Thank you! In general, it's good practice to limit code that runs on import to a minimum. Source: https://github.com/AnswerDotAI/rerankers/blob/c5b2c19e7a84fc4c4dd3f31dea934297ce4b7bb1/rerankers/utils.py#L50