Conversation
Reorder import statements to follow logical grouping and update format! macro calls to use multi-line formatting for better readability. style(rust): clean up unused imports and improve code formatting Remove unused RefType import and reformat function calls to use multi-line syntax for better readability. Also clean up unnecessary imports in retrieval strategy module. refactor(index): reorganize module structure Move ReasoningIndexConfig import after other imports to maintain consistent ordering in the indexer module. refactor(retrieval): remove unused DocumentEntry export Remove unused DocumentEntry re-export from retrieval strategy module as it's not being used externally.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- Update workspace package version from 0.1.26 to 0.1.27 in Cargo.toml - Update Python package version from 0.1.5 to 0.1.6 in pyproject.toml
- Replace unused variables with underscore prefix to eliminate compiler warnings across multiple modules including workspace.rs, emitter.rs, executor.rs, aggregator.rs, llm_pilot.rs, reference.rs, retriever.rs, beam.rs, evaluate.rs, hybrid.rs, and threshold.rs - Remove overly permissive clippy allowances in lib.rs and replace with specific lint configurations for better code quality - Add SearchAlgorithm and QueryComplexity exports to main library interface - Include ReasoningIndexConfig in document type exports - These changes clean up code by addressing unused variable warnings while maintaining all existing functionality
- Add LlmMetricsReport with total calls, token usage, success rates, latency, and estimated costs - Add PilotMetricsReport with decision accuracy, guidance calls, and intervention tracking - Add RetrievalMetricsReport with query performance, cache metrics, and path quality statistics - Add combined MetricsReport to aggregate all subsystem metrics - Implement metrics hub for centralized metric collection - Expose metrics_report() method in Python bindings
Add recursive parameter to PyIndexContext.from_dir with default value false. When recursive=True, uses IndexContext::from_dir_recursive instead of from_dir. feat(rust): implement recursive directory scanning for IndexContext Add IndexContext::from_dir_recursive method that scans directories recursively. Refactor from_dir to use internal scan_dir helper function. Update supported extensions to only include .md and .pdf files. docs: add directory indexing example with CLI interface Add new example showing how to recursively index documents in a directory with command line arguments for recursive/non-recursive modes.
- Add new example script examples/index_directory/main.py that demonstrates recursive directory indexing functionality - The example supports command-line arguments for directory path and recursive/non-recursive scanning options - Add environment variable support for LLM configuration - Implement document listing, querying, and metrics reporting - Add __len__ and is_empty methods to PyIndexContext for better Python integration - Update IndexContext repr to show number of sources
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Reorder import statements to follow logical grouping and update format! macro calls to use multi-line formatting for better readability.
style(rust): clean up unused imports and improve code formatting
Remove unused RefType import and reformat function calls to use multi-line syntax for better readability. Also clean up unnecessary imports in retrieval strategy module.
refactor(index): reorganize module structure
Move ReasoningIndexConfig import after other imports to maintain consistent ordering in the indexer module.
refactor(retrieval): remove unused DocumentEntry export
Remove unused DocumentEntry re-export from retrieval strategy module as it's not being used externally.