https://github.com/yeeking/webui-juce-llama-chatbot-example
Chatbot in C++ using llama cpp and a web interface plus the JUCE library
https://github.com/yeeking/webui-juce-llama-chatbot-example
chatbot juce llamacpp
Last synced: about 1 month ago
JSON representation
Chatbot in C++ using llama cpp and a web interface plus the JUCE library
- Host: GitHub
- URL: https://github.com/yeeking/webui-juce-llama-chatbot-example
- Owner: yeeking
- License: mit
- Created: 2025-04-22T15:02:23.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-04-22T15:23:00.000Z (about 2 months ago)
- Last Synced: 2025-04-23T16:16:33.284Z (about 1 month ago)
- Topics: chatbot, juce, llamacpp
- Language: C++
- Homepage:
- Size: 85.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Minimal C++ LLM chat bot example
Uses web ui + JUCE + llamacpp CMake C++
## Building the project
```
# clone this project
git clone [email protected]:yeeking/webui-juce-llama-chatbot-example.git# cd into the project libs folder
cd webui-juce-llama-chatbot-example/plugin/libs# get the JUCE and llama cpp repos
git clone [email protected]:juce-framework/JUCE.git
git clone [email protected]:ggml-org/llama.cpp.git# generate the project
cd ..
cmake -B build . # don't forget the dot at the end :)# build
cmake --build build --config Debug -j 10 # number of threads to use```