conda create -n rag-agent python=3.10 # For conda venv
python -m venv rag-agent # Python venv
pip install -r requirements.txt
huggingface-cli download dangvantuan/vietnamese-embedding --exclude "*.bin" --local-dir ./models/vietnamese-embedding
Optional: Download vistral gguf quantized model (currently not work in this app) and save it in /models/llms/gguf/
Get Google Gemini API key: Google AI Studio
GOOGLE_API_KEY="<GOOGLE_API_KEY>"
ADMIN_PASSWORD="<Enter Admin page password>"
bash app.sh start|stop|restart