To install this project, follow these steps:
- Clone the repository using
https://github.com/chintanrabadiya/Learning_RAG.git - Navigate into the project directory using
cd project-name - Install the required dependencies using
pip install -r requirements.txt - Create a virtual environment using
python -m venv .venv(on Windows) orpython3 -m venv .venv(on Linux/Mac) - Activate the virtual environment using
source .venv/bin/activate(on Linux/Mac) or. .venv\Scripts\activate(on Windows)
To use this project, follow these steps:
- Run the application using
python app.py - Follow the prompts to complete the task
- Refer to the documentation for more information on usage guidelines
To add a .env file, create a new file named .env in the root directory of your project. Add your environment variables to this file, one per line, in the format VARIABLE_NAME=value.
Example:
API_KEY=your-api-key
SECRET_KEY=your-secret-key
To add a .venv virtual environment, navigate into the project directory and run python -m venv .venv (on Windows) or python3 -m venv .venv (on Linux/Mac). Activate the virtual environment using source .venv/bin/activate (on Linux/Mac) or . .venv\Scripts\activate (on Windows).
I hope this helps! Let me know if you need any further assistance.