Skip to main content

hematite/tools/
search.rs

1use serde_json::Value;
2
3/// Precision File Discovery using Fuzzy Matching.
4pub async fn find_files_fuzzy(args: &Value) -> Result<String, String> {
5    crate::agent::find_files::find_files_fuzzy(args).await
6}