Skip to content

An experiment using LLM completions to help me remember the details of books and other text I've read

Notifications You must be signed in to change notification settings

dericko/booktalk

Repository files navigation

Book-talk

This is an experiment using LLM (large language model) completions to help me remember the details of books and other text I've read. In this case, our AI assistant has "read" the contents of Flights by Olga Tokarczuk and can look up excerpts from the book before answering questions.

screen record

This happens in a few steps:

  1. Pre-process source text(s) by generating embeddings (vector representations of chunks of text text) and writing these to file.
  2. Seed a database with the text + embeddings for easy lookup (in this case, use postgres + pgvector to store the embeddings).
  3. Spin up a web server. The frontend is a simple form that takes text question and displays text answer. The API handles this with POST /ask.
  4. The backend it does the following: fetches a vector embedding for the question, and then uses it to look up most relevant chunk(s) of text (pgvector uses some version of approximate nearest neighbor search to calculate the vector's cosine similarity).
  5. Construct a text query using the context and question and run it through the LLM. In this case, OpenAI's /completions API.
  6. Save questions/answers in another table (allows us to skip step 5 if question was already asked)

The above is built using Ruby on Rails / React. It uses OpenAI for the embeddings/completions, but they could be swapped with a different LLM, especially if we want to do more fine tuning down the line.

Initial version based on askmybook.com. Also, thanks to these resources.

Structure

This is a pretty standard RoR setup. The main concerns/files are:

  1. pre-processing script bin/generate_embeddings
    • this reads a pdf page-by-page, fetches openai embeddings for each page, and saves them along with page data to csv
  2. database
    • db/seeds seeds db with csv data rake db:seed
    • db/schema for db schema
      • Document (stores pre-processed context/pages)
      • Question (stores questions asked in app)
  3. api
  4. frontend

Dependencies

See Gemfile and package.json for dependencies. Install them with:

bundle install
yarn install
  • postgres
  • pg-vector

Setup

Run the script bin/generate_embeddings with book.pdf in root

rails runner bin/generate_embeddings --pdf book.pdf

This will generate two csv files: book.pdf.pages.csv and book.pdf.embeddings.csv

Run locally

bin/dev

Info

  • Ruby version ruby-3.0.0

  • View available routes rails routes

  • Database creation rails db:create

  • Database initialization rails db:migrate

  • How to run the test suite bin/dev test

TODO:

  • setup react react react-dom
  • setup esbuild build.js
  • basic App.jsx and view/controller setup
  • ruby script to create csvs
  • api routing /ask
    • /ask controller for api integrations
  • db etc
    • setup Questions model
    • store/lookup questions
    • allow looking up times called?
  • tidy up
  • frontend design
  • tweaks
    • seed some questions
  • tests
    • cover the major pieces, priority: ask_helper, ask_controller, openai_service
  • improvements
    • storage/lookup
      • store doc embeddings in pg (use pgvector)
      • store question embeddings in pg
    • pre-processing script
      • experiment with other chunks beside pages (chapter headings, for example)
      • batch calls to embeddings endpoint (right now it's one per page)
    • context
      • store previous Q+A
      • add more metadata (loc in book)

About

An experiment using LLM completions to help me remember the details of books and other text I've read

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published