Join our Discord Server to get the latest updates and to interact with the community.
This is the repository for the Freedom GPT application. This application is built using Electron and React. It is a desktop application that allows users to run alpaca models on their local machine.
git clone --recursive https://github.com/ohmplatform/FreedomGPT.git freedom-gpt
cd freedom-gpt
yarn install
cd llama.cpp
make
- Download and install CMake: https://cmake.org/download/
- Run the following commands one by one:
cd llama.cpp
cmake .
cmake --build . --config Release
- You should now have a
Release
folder with amain.exe
file inside it. You can run this file to test the chat client.
To run the application, run the following command in your terminal:
yarn start
⦻ Make sure you are in the root directory of the project.
This project utilizes several open-source packages and libraries, without which this project would not have been possible:
"llama.cpp" - C++ library. https://github.com/ggerganov/llama.cpp
"LLAMA" by Facebook Research - a low-latency, large-scale approximate nearest neighbor search algorithm. https://github.com/facebookresearch/llama
"Chatbot UI" - https://github.com/mckaywrigley/chatbot-ui
We would like to express our gratitude to the developers of these packages and their contributors for making their work available to the public under open source licenses. Their contributions have enabled us to build a more robust and efficient project.
See the LICENSE file.