https://github.com/theonekevin/ducky.ai
A demo RAG system 🦆
https://github.com/theonekevin/ducky.ai
Last synced: about 1 year ago
JSON representation
A demo RAG system 🦆
- Host: GitHub
- URL: https://github.com/theonekevin/ducky.ai
- Owner: TheOneKevin
- License: apache-2.0
- Created: 2023-12-11T05:31:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-20T19:05:51.000Z (over 2 years ago)
- Last Synced: 2024-10-19T09:00:09.408Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 88.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Install and update node to the latest version:
```
sudo apt install npm
sudo npm cache clean -f
sudo npm install -g n
sudo n stable
```
Then `cd` into this directory and run:
```
python -m venv .venv
pip install -r requirements.txt
npm i
```
This should set up your development environment. Finally, run:
```
npm run compile
npm run serve
```
and the server should start. If you get an error with pip, be sure to use Python version >= 3.10. However, < 3.13a as I see errors with that version.