A collection of notebooks and resources for learning about Large Language Models (LLMs).
Install Ollama
Add the following to your .envrc file:
unset VIRTUAL_ENV
uv sync --locked
PATH_add .venv/binInstall pre-commit:
pre-commit installThen run:
jupyter-labAdd to your .envrc file:
# postgres
export PGHOST=localhost
export PGPORT=54222
export PGUSER=llm_learning
export PGDATABASE=llm_learning
export DATABASE_URL=postgresql+psycopg://llm_learning@localhost:54222/llm_learningStart container services:
docker-compose up -d