forked from kent/consciousness
WIP: Fix Arc::new() wrapping on tool handlers — some import/paren issues remain
Co-Authored-By: Proof of Concept <poc@bcachefs.org>
This commit is contained in:
parent
12798eeae2
commit
daba424a46
9 changed files with 16 additions and 16 deletions
|
|
@ -25,7 +25,7 @@ pub fn tool() -> super::Tool {
|
|||
name: "grep",
|
||||
description: "Search for a pattern in files. Returns matching file paths by default, or matching lines with context.",
|
||||
parameters_json: r#"{"type":"object","properties":{"pattern":{"type":"string","description":"Regex pattern to search for"},"path":{"type":"string","description":"Directory or file to search in (default: current directory)"},"glob":{"type":"string","description":"Glob pattern to filter files (e.g. '*.rs')"},"show_content":{"type":"boolean","description":"Show matching lines instead of just file paths"},"context_lines":{"type":"integer","description":"Lines of context around matches"}},"required":["pattern"]}"#,
|
||||
handler: Arc::new(|_a, v| Box::pin(async move { grep(&v)) }),
|
||||
handler: Arc::new(|_a, v| Box::pin(async move { grep(&v) })),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue