The main objective of this project is to explore how ordinary llama models can acquire the ability to make tool calls.
git clone https://github.com/L-jasmine/llm-world
wget https://huggingface.co/second-state/Llama-3-8B-Instruct-GGUF/resolve/main/Meta-Llama-3-8B-Instruct-Q5_K_M.gguf
This project uses dynamic linking to connect to llama.cpp, so it is necessary to download or compile the llama.cpp dynamic link library in advance.
Before running the project, you need to configure environment variables to specify the location of the Llama library and the search path for dynamic link libraries. Please follow the steps below:
export LLAMA_LIB={LLama_Dynamic_Library_Dir}
# export LD_LIBRARY_PATH={LLama_Dynamic_Library_Dir}
Use the following command to run the example program:
cargo run --release -- -p static/project.toml
We welcome any form of contributions, including bug reports, new feature suggestions, and code submissions.
This project is licensed under the MIT License.