diff options
| author | sigoden <sigoden@gmail.com> | 2024-07-03 23:52:11 +0000 |
|---|---|---|
| committer | sigoden <sigoden@gmail.com> | 2024-07-03 23:52:11 +0000 |
| commit | 6d48c0a03133f52cc28b453a65241b35c5823ae2 (patch) | |
| tree | 78d00eced1e52b27c3967aaf008fe2f161a2a44a /README.md | |
| parent | ca462b69e56cc472dc68bbaca0f6d9569615818f (diff) | |
| download | llm-functions-docker-6d48c0a03133f52cc28b453a65241b35c5823ae2.tar.gz | |
chore: update readme
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 23 |
1 files changed, 10 insertions, 13 deletions
@@ -1,6 +1,11 @@ # LLM Functions -This project allows you to enhance large language models (LLMs) with custom functions written in bash/js/python. Imagine your LLM being able to execute system commands, access web APIs, or perform other complex tasks – all triggered by simple, natural language prompts. +This project allows you to enhance large language models (LLMs) with custom tools and agents developed in bash/javascript/python. Imagine your LLM being able to execute system commands, access web APIs, or perform other complex tasks – all triggered by simple, natural language prompts. + + + + + ## Prerequisites @@ -23,14 +28,16 @@ git clone https://github.com/sigoden/llm-functions ``` get_current_weather.sh -may_execute_py_code.py +execute_command.sh +#execute_py_code.py ``` - Create a `./agents.txt` file with each agent name on a new line. ``` todo-sh -hackernews +#todo-js +#todo-py ``` - Run `argc build` to build functions declarations files (`functions.json`) and binaries (`./bin`) for tools and agents. @@ -51,16 +58,6 @@ AIChat will automatically load `functions.json` and execute commands located in Now you can interact with your LLM using natural language prompts that trigger your defined functions. -## Showcases - -### Tool - - - -### Agent - - - ## Writing Your Own Tools Writing tools is super easy, you only need to write functions with comments. |
