Skip to content

Commit b02c5a0

Browse files
authored
style: reduce httpx log level (#59)
1 parent 0c5b7b5 commit b02c5a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/raglite/_litellm.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030

3131
from raglite._config import RAGLiteConfig
3232

33-
# Reduce the logging level for LiteLLM and flashrank.
33+
# Reduce the logging level for LiteLLM, flashrank, and httpx.
3434
os.environ["LITELLM_LOG"] = "WARNING"
3535
logging.getLogger("LiteLLM").setLevel(logging.WARNING)
3636
logging.getLogger("flashrank").setLevel(logging.WARNING)
37+
logging.getLogger("httpx").setLevel(logging.WARNING)
3738

3839

3940
class LlamaCppPythonLLM(CustomLLM):

0 commit comments

Comments
 (0)