askthebible / README.md
lawrencewu's picture
fix format
f908a48

A newer version of the Streamlit SDK is available: 1.42.0

Upgrade
metadata
title: Ask the Bible
sdk: streamlit
app_file: app.py

Bible QA

Ask a question about the Bible and get an answer.

This uses ColBERT embeddings to retrieve relevant passages from the Bible (ESV) and then uses OpenAI's gpt-3.5-turbo-0125 to answer the question.

Setup

pyenv local 3.11
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

# install in editable mode
pip install -e .

# setup pre-commit
pre-commit install