deeprage/
├── src/
│ ├── __init__.py
│ ├── config.py
│ ├── document.py
│ ├── parser.py
│ ├── store.py
│ ├── retriever.py
│ ├── generator.py
│ └── utils.py
├── tests/
│ └── __init__.py
├── knowledge/
│ ├── markdown/
│ ├── json/
│ ├── index/
│ ├── cache/
│ └── responses/
├── requirements.txt
└── rage.py
tested on Ubuntu 22.04LTS with Python 3.11
pip install --upgrade pip setuptools
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
pip --version
pip check
sudo apt update && sudo apt install python3.11 python3.11-venv
python3.11 -m venv rage
source rage/bin/activate
pip install --no-cache-dir -r requirements.txt
streamlit run rage.py```