diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 18 |
1 files changed, 14 insertions, 4 deletions
@@ -35,7 +35,17 @@ cd llm-functions ### 2. Build tools and agents -#### I. Create a `./tools.txt` file with each tool filename on a new line. +#### Build all tools using make + +Simply build all tools using GNU-Make: + +```bash +make +``` + +#### Build individual tools + +##### I. Create a `./tools.txt` file with each tool filename on a new line. ``` get_current_weather.sh @@ -69,20 +79,20 @@ Now there is a `web_search.sh` ready to be added to your `./tools.txt`. </details> -#### II. Create a `./agents.txt` file with each agent name on a new line. +##### II. Create a `./agents.txt` file with each agent name on a new line. ``` coder todo ``` -#### III. Build `bin` and `functions.json` +##### III. Build `bin` and `functions.json` ```sh argc build ``` -#### IV. Ensure that everything is ready (environment variables, Node/Python dependencies, mcp-bridge server) +##### IV. Ensure that everything is ready (environment variables, Node/Python dependencies, mcp-bridge server) ```sh argc check |
