-
Notifications
You must be signed in to change notification settings - Fork 890
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: clean up code and improve readability across multiple files - Added missing `None` argument in `bench_search` function. - Simplified match statements to if conditions in `handle_index_command`. - Removed unnecessary `unwrap_or_else` and replaced with `unwrap_or` in `read_to_string`. - Updated argument passing style for `Command::args` to use array syntax. - Improved formatting and removed redundant lines in various functions. - Added `#[allow(clippy::too_many_arguments)]` to several functions to suppress warnings. - Enhanced test cases by removing unnecessary lines and improving readability. - General code cleanup for better maintainability. * chore: add rust toolchain configuration file for version 1.84.0 * refactor: enhance AudioTranscriptionEngine with Default implementation and clean up core.rs * refactor: update path handling in audio processing and encoding modules to use `Path` instead of `PathBuf`, and enhance VAD sensitivity enum with a default variant * refactor: simplify OCR benchmark code and improve memory handling; clean up monitor and screenshot capture functions * refactor: improve code readability and suppress clippy warnings across multiple files; update assertions and argument passing style in tests * refactor: simplify language filtering and confidence calculation in unstructured OCR; improve code readability and reduce unnecessary lines * chore: update dependencies and improve code formatting; bump screenpipe-app version to 0.26.6, clean up argument passing style, and enhance permission handling * chore: update Rust version to 1.84 in Cargo.toml --------- Co-authored-by: Louis Beaumont <[email protected]>
- Loading branch information
1 parent
8cd040e
commit 26a1618
Showing
49 changed files
with
304 additions
and
345 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[toolchain] | ||
channel = "stable" | ||
versioned = "1.84.0" |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.