refactor: replace dict-based query with ParsedQuery dataclass #133
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR replaces the old dictionary-based query object with a new
ParsedQuery
dataclass, improving type safety and readability across the codebase.Key points:
Introduces a
ParsedQuery
dataclass
that consolidates all query-related fields (repo, branch, commit, patterns, etc.)Updates the following functions in the
query_parser
module to return a query of typeParsedQuery
(instead ofdict[str, Any]
):_parse_repo_source
_parse_path
parse_query
Updates the following functions in the
query_ingestion
module to take a query argument of typeParsedQuery
(instead ofdict[str, Any]
):run_ingest_query
_ingest_directory
_ingest_single_file
_create_tree_structure
_create_summary_string
_extract_files_content
_process_item
_process_symlink
_scan_directory
Switches ignore/include patterns to sets for clearer overrides and deduplication
Moves or imports maximum size constants (
MAX_FILE_SIZE
, etc.) toconfig.py
Aligns all references and tests to the new
dataclass
approachThis unification makes it easier to understand and maintain how query data flows through the ingestion process.