This project scrapes documentation websites and generates Q&A pairs for RAG applications.
- Clone the repository
- Create conda environment:
conda env create -f environment.yml
- Activate environment:
conda activate web-scraper-qa
- Copy .env.example to .env and update with your OpenAI API key
- Start backend:
cd backend uvicorn app.main:app --reload - Start frontend:
cd frontend streamlit run app.py