Improve ripgrep tool status output.
This commit is contained in:
parent
565dee74cf
commit
8ebf5bf23e
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
- Make delete_tasks tool available to planning agent.
|
- Make delete_tasks tool available to planning agent.
|
||||||
- Get rid of implementation args as they are not used.
|
- Get rid of implementation args as they are not used.
|
||||||
|
- Improve ripgrep tool status output.
|
||||||
|
|
||||||
## [0.6.4] - 2024-12-19
|
## [0.6.4] - 2024-12-19
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -94,6 +94,7 @@ def ripgrep_search(
|
||||||
info_sections.append("\n".join(params))
|
info_sections.append("\n".join(params))
|
||||||
|
|
||||||
# Execute command
|
# Execute command
|
||||||
|
console.print(Panel(Markdown(f"Searching for: **{pattern}**"), title="🔎 Ripgrep Search", border_style="bright_blue"))
|
||||||
try:
|
try:
|
||||||
print()
|
print()
|
||||||
output, return_code = run_interactive_command(cmd)
|
output, return_code = run_interactive_command(cmd)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue