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.pytested on Ubuntu 22.04LTS with Python 3.11
pip install --upgrade pip setuptoolsecho 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrcpip --versionpip checksudo apt update && sudo apt install python3.11 python3.11-venv
python3.11 -m venv ragesource rage/bin/activatepip install --no-cache-dir -r requirements.txtstreamlit run rage.py```