diff options
| author | Leonard Kugis <leonard@kug.is> | 2026-02-01 22:16:03 +0100 |
|---|---|---|
| committer | Leonard Kugis <leonard@kug.is> | 2026-02-01 22:16:03 +0100 |
| commit | e457bb9a73ab07c79ea1fceffa571de9d5d5622a (patch) | |
| tree | 39b85f909b083bc1ad947535f4010934604a8003 | |
| parent | f6c5c1bd903793d5e687f69a698579d77604562b (diff) | |
| download | llm-functions-docker-e457bb9a73ab07c79ea1fceffa571de9d5d5622a.tar.gz | |
Adjusted README.md to usage of GNU-Make
Now Makefile can be used to build all tools with a single command.
Keeping original guide to build individual selection of tools.
| -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 |
