➜ llm --td --cl 20 --functions '
import subprocess
def mgrep(pattern: str, path: str = ".") -> str:
"""Call mgrep for semantic search across files under the given path."""
result = subprocess.run(["mgrep", "search", pattern, path], capture_output=True, text=True, timeout=30)
return result.stdout if result.returncode == 0 else result.stderr
' \
-s "Use mgrep extensively to search the current working directory to answer the user's question. mgrep is powerful semantic search tool." \
"Write a plugin that defines a toolbox for using the mgrep search cli tool.
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
| /* | |
| For General Icons: <i class="general foundicon-[icon-name]"></i> | |
| For Social Icons: <i class="social foundicon-[icon-name]"></i> | |
| For Accessibility Icons: <i class="accessibility foundicon-[icon-name]"></i> | |
| For General Enclosed Icons: <i class="enclosed foundicon-[icon-name]"></i> | |
| */ | |
| /* global foundicon styles */ | |
| [class*="foundicon-"] { |
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
| #################################### | |
| # BASIC REQUIREMENTS | |
| # http://graphite.wikidot.com/installation | |
| # http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
| # Last tested & updated 10/13/2011 | |
| #################################### | |
| cd | |
| sudo apt-get update | |
| sudo apt-get upgrade |