From 12c7bd734c631df3381f982696ca0bec58a1666a Mon Sep 17 00:00:00 2001 From: vezilka Date: Tue, 30 Jun 2026 10:50:06 +0000 Subject: [PATCH] Add prompting lab --- lab01_prompting.ipynb | 1 + 1 file changed, 1 insertion(+) create mode 100644 lab01_prompting.ipynb diff --git a/lab01_prompting.ipynb b/lab01_prompting.ipynb new file mode 100644 index 0000000..6415491 --- /dev/null +++ b/lab01_prompting.ipynb @@ -0,0 +1 @@ +{"cells":[{"cell_type":"markdown","metadata":{},"source":["# GenAI Lab 01 — Prompting\n","\n","In this lab you will experiment with prompts for a Large Language Model.\n","\n","1. Write a clear, specific prompt.\n","2. Add context and an example (few-shot).\n","3. Ask for a specific output format.\n"]},{"cell_type":"code","execution_count":null,"metadata":{},"outputs":[],"source":["prompt = \"Explain what a transformer is to a 12-year-old, in 3 sentences.\"\n","print(prompt)\n","# TODO: send `prompt` to your LLM of choice and compare outputs."]}],"metadata":{"kernelspec":{"display_name":"Python 3","language":"python","name":"python3"}},"nbformat":4,"nbformat_minor":5} \ No newline at end of file