Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# virtual environment
.venv/
venv/
env/

# Credentials and configs
.env
.env.local
*.pem
*.key

# Chroma_db
chroma_db_LAB/

# Python cache and builds
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Jupyter/IPython
.ipynb_checkpoints/
.ipynb_checkpoints
*.ipynb_checkpoints

# Logs and dumps
*.log
logs/
.mongo/
mongo/
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
![logo_ironhack_blue 7](https://user-images.githubusercontent.com/23629340/40541063-a07a0a8a-601a-11e8-91b5-2f13e4e6b441.png)

# Lab | Intro to RAG

## Introduction

The goal of this lab is to help you practice the concepts you learned in the lesson and provide you with some hands-on experience using RAG.

## Getting Started

In this lab you will be working on [main.ipynb](your-code/main.ipynb). To launch it, first navigate to the directory that contains `main.ipynb` in Terminal, then execute `jupyter notebook`. In the webpage that is automatically opened, click the `main.ipynb` link to launch it.

When you are on `main.ipynb`, read the instructions for each cell and provide your answers. Make sure to test your answers in each cell and save. Jupyter Notebook should automatically save your work progress. But it's a good idea to periodically save your work manually just in case.

## Deliverables

- `main.ipynb` with your responses to each of the exercises.

## Submission

![logo_ironhack_blue 7](https://user-images.githubusercontent.com/23629340/40541063-a07a0a8a-601a-11e8-91b5-2f13e4e6b441.png)
# Lab | Intro to RAG
## Introduction
The goal of this lab is to help you practice the concepts you learned in the lesson and provide you with some hands-on experience using RAG.
## Getting Started
In this lab you will be working on [main.ipynb](your-code/main.ipynb). To launch it, first navigate to the directory that contains `main.ipynb` in Terminal, then execute `jupyter notebook`. In the webpage that is automatically opened, click the `main.ipynb` link to launch it.
When you are on `main.ipynb`, read the instructions for each cell and provide your answers. Make sure to test your answers in each cell and save. Jupyter Notebook should automatically save your work progress. But it's a good idea to periodically save your work manually just in case.
## Deliverables
- `main.ipynb` with your responses to each of the exercises.
## Submission
Upon completion, add your deliverables to git. Then commit git and push your branch to the remote.
Loading