remove logging

- remove logging statements
- format code with ruff
This commit is contained in:
Jake 2024-09-04 16:14:09 +01:00
parent 43104e0d19
commit 42a42caf43

View file

@ -10,10 +10,10 @@ from common.utils import unwrap
has_infinity_emb: bool = False
try:
from infinity_emb import EngineArgs, AsyncEmbeddingEngine
has_infinity_emb = True
logger.debug("Successfully imported infinity.")
except ImportError:
logger.debug("Failed to import infinity.")
pass
class InfinityContainer: