This repository documents my progress in the llm-zoomcamp course provided by DataTalks.Club. Feel free to check out the course and rerun the code in this repository.
- Create a virtual environment with Python 3.11 and activate it.
python -m venv .venv
. .venv/bin/activate
- Install package manager poetry and install the dependencies. You can check the dependencies in the pyproject.toml file.
pip install poetry
poetry install