LLMNet | Learning

Getting Started with LLMs: From Zero to Your First Application

Welcome to this introductory path. Here, you will learn the theory and practice behind Large Language Models (LLMs) step-by-step, so you can build your own AI applications with confidence.

Module 1: Basic Concepts

Discover exactly what an LLM is and understand the fundamentals behind the technology.

Learning Objectives

Exercise

Use an online token calculator (for example, OpenAI's tokenizer) and enter a complex Dutch sentence. See how the sentence is broken down. Write down how many words you used versus the number of generated tokens, and think about why Dutch words sometimes break down into more tokens than English words.

Module 2: Prompting

The way you ask a question (the prompt) directly determines the quality and relevance of the response.

Learning Objectives

Exercise

Write a few-shot prompt to train the AI to extract the sentiment (positive, neutral, or negative) from three fictional customer reviews, including a JSON output structure as an example. Test your prompt in a freely available chat interface.

Module 3: API Basics

Step out of the web interface and learn how to communicate with LLMs programmatically via code.

Learning Objectives

Exercise

Write (or generate using AI) a simple cURL command or Python script that sends a basic "Hello world" query to an LLM API endpoint (such as Anthropic or DeepSeek) and study how the returned JSON response is structured.

Module 4: Safety & Privacy

Deploying AI responsibly is the most important step before going live. Prevent data leaks and unreliable output.

Learning Objectives

Exercise

Write a fictional customer complaint email, including name, address, and account number. Then, devise a logic (or a prompt for a pre-processing AI) to completely anonymize this text before it can be sent to an external API endpoint.