From c1b0d5356eb6e2ea58029d955370305353e38a1a Mon Sep 17 00:00:00 2001 From: Chester Law Date: Sun, 5 Oct 2025 16:52:11 +0900 Subject: [PATCH 1/3] Fix grammar --- 05-advanced-prompts/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05-advanced-prompts/README.md b/05-advanced-prompts/README.md index fd9312bef..278239d6b 100644 --- a/05-advanced-prompts/README.md +++ b/05-advanced-prompts/README.md @@ -6,7 +6,7 @@ Let's recap some learnings from the previous chapter: > Prompt _engineering_ is the process by which we **guide the model towards more relevant responses** by providing more useful instructions or context. -There are also two steps to writing prompts, constructing the prompt, by providing relevant context and the second part is _optimization_, how to gradually improve the prompt. +There are also two steps to writing prompts: constructing the prompt, by providing relevant context, and _optimization_, how to gradually improve the prompt. At this point, we have some basic understanding of how to write prompts, but we need to go deeper. In this chapter, you will go from trying out various prompts to understanding why one prompt is better than another. You will learn how to construct prompts following some basic techniques that can be applied to any LLM. From 50980cb0e9edf5f3868d29d04bd1d9860070d426 Mon Sep 17 00:00:00 2001 From: Chester Law Date: Sun, 5 Oct 2025 22:54:05 +0900 Subject: [PATCH 2/3] Fix grammar --- 06-text-generation-apps/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06-text-generation-apps/README.md b/06-text-generation-apps/README.md index 6d17eeee8..17ffcd600 100644 --- a/06-text-generation-apps/README.md +++ b/06-text-generation-apps/README.md @@ -42,7 +42,7 @@ Compare it to a command-based app where you type a command: So how is a text generation app different? -In a text generation app, you have more flexibility, you're not limited to a set of commands or a specific input language. Instead, you can use natural language to interact with the app. Another benefit is that because you're already interacting with a data source that has been trained on a vast corpus of information, whereas a traditional app might be limited on what's in a database. +In a text generation app, you have more flexibility, you're not limited to a set of commands or a specific input language. Instead, you can use natural language to interact with the app. Another benefit is that you're already interacting with a data source that has been trained on a vast corpus of information, whereas a traditional app might be limited on what's in a database. ### What can I build with a text generation app? From 0ccd2e865189b857a5117e9aa03e94e2acd4e73a Mon Sep 17 00:00:00 2001 From: Chester Law Date: Mon, 6 Oct 2025 04:06:44 +0900 Subject: [PATCH 3/3] Fix punctuation/grammar --- 07-building-chat-applications/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07-building-chat-applications/README.md b/07-building-chat-applications/README.md index e052e5204..3ae0bd1f3 100644 --- a/07-building-chat-applications/README.md +++ b/07-building-chat-applications/README.md @@ -175,7 +175,7 @@ Microsoft's approach to Responsible AI has identified six principles that should ## Assignment -See [assignment](./python?WT.mc_id=academic-105485-koreyst) it will take you through a series of exercises from running your first chat prompts, to classifying and summarizing text and more. Notice that the assignments are available in different programming languages! +See [assignment](./python?WT.mc_id=academic-105485-koreyst). It will take you through a series of exercises from running your first chat prompts, to classifying and summarizing text and more. Notice that the assignments are available in different programming languages! ## Great Work! Continue the Journey