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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
notebooks/.env
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,12 @@ The following repo contains the materials for my talk delivered at GOTO Amsterda
The repo contains the following:
* `/notebooks/rag-pdf-qa.ipynb` contains the code for the simple RAG pipeline I demoed during the talk. There are extensive notes in Markdown in this notebook to help you understand how to adapt this for your own use case.
* `talk-materials/talk-sources.md` contains all of the papers and other sources I used for this talk. It also contains all of my image credits.
* `talk-materials/beyond-the-hype.pdf` contains a copy of my slides.
* `talk-materials/beyond-the-hype.pdf` contains a copy of my slides.

# Steps for using the QA pipeline
1. Create a copy of `.env_sample` and rename it to `.env`
2. Get an OpenAI key from [here](https://platform.openai.com/api-keys)
3. Replace `key-here` with your API key in `.env` and save the file
4. Start a terminal window in the root of this repository
5. Enter `pip install -r requirements.txt`
8. Run all cells of the notebook
1 change: 1 addition & 0 deletions notebooks/.env_sample
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
OPENAI_API_KEY=key-here
Loading