Welcome to the Building LLM applications workshop! In this hands-on session, you will enhance a recipe database application by integrating automatic recipe parsing powered by a Large Language Model (LLM). By the end of this workshop, you will gain practical experience with parsing HTML, prompt engineering, LLM client setup, prompt evaluation, and function calling.
Bring your own computer to participate in the session. To ensure everything runs smoothly and to save time during the event, please complete the following steps in advance.
Node.js is required for running JavaScript-based tools and applications. If you already have Node.js installed, you can skip this step.
- Download the Windows installer from the Node.js official website.
- Run the installer and follow the prompts.
- Open a terminal (Command Prompt or PowerShell) and verify the installation:
node --version npm --version
- Install Node.js using Homebrew:
brew install node
- Verify the installation:
node --version npm --version
- Install Node.js via your package manager (e.g., apt for Ubuntu):
sudo apt update sudo apt install nodejs npm
- Verify the installation:
node --version npm --version
Alternatively, you can download the Node.js installer from the Node.js official website for your platform.
Git is required for version control and cloning the workshop repository. If you already have Git installed, you can skip this step.
- Download the Git installer from the Git official website.
- Run the installer and follow the prompts.
- Open a terminal and verify the installation:
git --version
- Install Git using Homebrew:
brew install git
- Verify the installation:
git --version
- Install Git via your package manager:
sudo apt update sudo apt install git
- Verify the installation:
git --version
You will need an Integrated Development Environment (IDE) for coding. If you already have a favorite IDE installed, you can skip this step. We recommend Visual Studio Code.
- Download the installer for your platform from the VS Code official website.
- Follow the installation prompts.
Alternatively, you may use another IDE of your choice.
Once you have installed Git:
- Open a terminal and run the following command to clone this repository:
git clone https://github.com/callistaenterprise/gaia2025-llm-workshop.git
- Navigate into the repository folder:
cd gaia2025-llm-workshop
That’s it! You’re now prepared to dive into the workshop. See you there!