https://github.com/yashdev9274/rag
https://github.com/yashdev9274/rag
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yashdev9274/rag
- Owner: yashdev9274
- Created: 2025-12-12T12:27:48.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-12-12T13:19:04.000Z (7 months ago)
- Last Synced: 2025-12-14T03:34:23.041Z (6 months ago)
- Language: Jupyter Notebook
- Size: 3.36 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RAG Project
## Setup Local Environment
1. **Activate the environment**:
```bash
source .venv/bin/activate
```
2. **Install dependencies**:
```bash
pip install -r requirements.txt
```
3. **Run Jupyter**:
```bash
jupyter lab
```
## Sync with Colab
**Local to Colab**:
1. Save changes in Jupyter.
2. Commit and push to GitHub:
```bash
git add .
git commit -m "Update notebook"
git push origin main
```
3. Open the notebook in Colab via the GitHub tab.
**Colab to Local**:
1. In Colab, go to **File > Save a copy in GitHub**.
2. Pull changes locally:
```bash
git pull origin main
```