An open API service indexing awesome lists of open source software.

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

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

```