Coverage for src / qdrant_loader_mcp_server / search / components / models / chunking.py: 100%
7 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-18 04:51 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-18 04:51 +0000
1from __future__ import annotations
3from dataclasses import dataclass
6@dataclass
7class ChunkingContext:
8 chunk_index: int | None = None
9 total_chunks: int | None = None
10 chunking_strategy: str | None = None