Suppress logging from deps

This commit is contained in:
Yiorgis Gozadinos 2025-09-03 11:42:08 +03:00
parent 450a58eb52
commit 3c235e8b6c
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View file

@ -6,6 +6,7 @@ from rich.logging import RichHandler
logging.basicConfig(level=logging.DEBUG)
logging.getLogger("httpx").setLevel(logging.WARNING)
logging.getLogger("httpcore").setLevel(logging.WARNING)
logging.getLogger("docling").setLevel(logging.WARNING)
def get_logger() -> logging.Logger:

View file

@ -6,6 +6,7 @@ from llm_judge import LLMJudge
from rich.console import Console
from rich.progress import Progress
from haiku.rag import logging # noqa
from haiku.rag.client import HaikuRAG
from haiku.rag.qa import get_qa_agent