refactor and deps (#2184)

This commit is contained in:
Alex
2025-12-10 21:53:59 +00:00
committed by GitHub
parent 09e7c1b97f
commit e0a9f08632
14 changed files with 120 additions and 298 deletions

View File

@@ -2,7 +2,7 @@ from unittest.mock import MagicMock, patch
from application.parser.remote.crawler_loader import CrawlerLoader
from application.parser.schema.base import Document
from langchain.docstore.document import Document as LCDocument
from langchain_core.documents import Document as LCDocument
class DummyResponse:

View File

@@ -4,7 +4,7 @@ from urllib.parse import urlparse
from application.parser.remote.web_loader import WebLoader, headers
from application.parser.schema.base import Document
from langchain.docstore.document import Document as LCDocument
from langchain_core.documents import Document as LCDocument
@pytest.fixture