Loading packages/3gpp-ai/threegpp_ai/lightrag/pg0_manager.py +1 −1 Original line number Diff line number Diff line Loading @@ -35,7 +35,7 @@ class Pg0Manager: instance_name: str = "3gpp-crawler", port: int = 15432, database: str = "tdoc", ): ) -> None: self.instance_name = instance_name self.port = port self.database = database Loading packages/3gpp-ai/threegpp_ai/lightrag/rag.py +1 −1 Original line number Diff line number Diff line Loading @@ -168,7 +168,7 @@ class TDocRAG: >>> asyncio.run(main()) """ def __init__(self, config: LightRAGConfig | None = None): def __init__(self, config: LightRAGConfig | None = None) -> None: self.config = config or LightRAGConfig.from_env() self._rag: LightRAG | None = None self._pg0_manager = None Loading packages/3gpp-ai/threegpp_ai/lightrag/seeder.py +1 −1 Original line number Diff line number Diff line Loading @@ -73,7 +73,7 @@ class EntitySeeder: ... await rag.stop() """ def __init__(self, rag: TDocRAG): def __init__(self, rag: TDocRAG) -> None: self.rag = rag self._created_count = 0 self._updated_count = 0 Loading src/tdoc_crawler/tdocs/operations/fetch.py +1 −1 Original line number Diff line number Diff line Loading @@ -45,7 +45,7 @@ class FetchMissingResult: refreshed: list[TDocMetadata], fetch_result: TDocCrawlResult | None = None, used_whatthespec_fallback: bool = False, ): ) -> None: """Initialize fetch result. Args: Loading src/tdoc_crawler/utils/date_parser.py +1 −2 Original line number Diff line number Diff line Loading @@ -3,8 +3,7 @@ from datetime import date def parse_partial_date(value: str, is_end: bool = False) -> date: """ Parse partial dates to full date boundaries. """Parse partial dates to full date boundaries. Args: value: Date string (2024, 2024-10, or 2024-10-28) Loading Loading
packages/3gpp-ai/threegpp_ai/lightrag/pg0_manager.py +1 −1 Original line number Diff line number Diff line Loading @@ -35,7 +35,7 @@ class Pg0Manager: instance_name: str = "3gpp-crawler", port: int = 15432, database: str = "tdoc", ): ) -> None: self.instance_name = instance_name self.port = port self.database = database Loading
packages/3gpp-ai/threegpp_ai/lightrag/rag.py +1 −1 Original line number Diff line number Diff line Loading @@ -168,7 +168,7 @@ class TDocRAG: >>> asyncio.run(main()) """ def __init__(self, config: LightRAGConfig | None = None): def __init__(self, config: LightRAGConfig | None = None) -> None: self.config = config or LightRAGConfig.from_env() self._rag: LightRAG | None = None self._pg0_manager = None Loading
packages/3gpp-ai/threegpp_ai/lightrag/seeder.py +1 −1 Original line number Diff line number Diff line Loading @@ -73,7 +73,7 @@ class EntitySeeder: ... await rag.stop() """ def __init__(self, rag: TDocRAG): def __init__(self, rag: TDocRAG) -> None: self.rag = rag self._created_count = 0 self._updated_count = 0 Loading
src/tdoc_crawler/tdocs/operations/fetch.py +1 −1 Original line number Diff line number Diff line Loading @@ -45,7 +45,7 @@ class FetchMissingResult: refreshed: list[TDocMetadata], fetch_result: TDocCrawlResult | None = None, used_whatthespec_fallback: bool = False, ): ) -> None: """Initialize fetch result. Args: Loading
src/tdoc_crawler/utils/date_parser.py +1 −2 Original line number Diff line number Diff line Loading @@ -3,8 +3,7 @@ from datetime import date def parse_partial_date(value: str, is_end: bool = False) -> date: """ Parse partial dates to full date boundaries. """Parse partial dates to full date boundaries. Args: value: Date string (2024, 2024-10, or 2024-10-28) Loading