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
ParsedQuerydataclass, improving type safety and readability across the codebase.Key points:
Introduces a
ParsedQuerydataclassthat consolidates all query-related fields (repo, branch, commit, patterns, etc.)Updates the following functions in the
query_parsermodule to return a query of typeParsedQuery(instead ofdict[str, Any]):_parse_repo_source_parse_pathparse_queryUpdates the following functions in the
query_ingestionmodule 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_directorySwitches ignore/include patterns to sets for clearer overrides and deduplication
Moves or imports maximum size constants (
MAX_FILE_SIZE, etc.) toconfig.pyAligns all references and tests to the new
dataclassapproachThis unification makes it easier to understand and maintain how query data flows through the ingestion process.