A flexible personal virtual assistant
Explore the docs »
Report Bug
·
Request Feature
Table of Contents
Bolt is a simple, easy-to-use, lightweight, flexible virtual assistant primarily developed for rlxos GNU/Linux but can work on any Unix based operating system, Primary target behind developing a lightweight and easy-to-use virtual assistant that any user can train and work with. Bolt uses the ML classification algorithm to detect the user intention and perform task accordingly. Bolt functionality can be extended using c++ dynamic modules, shell scripts or python scripts.
- C++17 compiler (g++10/clang++12)
- libdl (glibc or any other unix libc)
- CMake & ninja
- Clone the repo
git clone https://github.com/itsmanjeet/bolt.git
- Compile the project using cmake
cmake -B build -DCMAKE_INSTALL_PREFIX=/usr
Test Run
./build/bolt \
-model ./data/model.json \
-responses ./data/responses.txt \
-plugin-path ./build/plugins \
hey their
Training model
./build/bolt \
-model ./data/model.json \
-responses ./data/responses.txt \
-plugin-path ./build/plugins \
-train ./training.txt
For more examples, please refer to the Documentation
- Implementation of NaiveBayes classification algorithm
- Use FuzzySearch for unknown queries
- Handle builtins using '@' prefix
- Add TTS support (using espeak, festival)
- Add STT support (...)
- Multi-language Support
- ...
See the open issues for a full list of proposed features ( and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Manjeet Singh - @rlxos_dev - [email protected]
Project Link: https://github.com/itsmanjeet/bolt