Skip to content

Commit 17904cf

Browse files
committed
UI changes
1 parent b258ae5 commit 17904cf

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

Instructions/Exercises/01-get-started-azure-openai.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Azure OpenAI provides a web-based portal named **Azure OpenAI Studio**, that you
3636
- **Deployment name**: *A unique name of your choice*
3737
- **Advanced options**
3838
- **Content filter**: Default
39+
- **Deployment type**: Standard
3940
- **Tokens per minute rate limit**: 5K\*
4041
- **Enable dynamic quota**: Enabled
4142

@@ -54,14 +55,14 @@ The *Chat* playground provides a chatbot interface for GPT 3.5 and higher models
5455
1. In the **Configuration** section, ensure that your model deployment is selected.
5556
1. In the **Assistant setup** section, in the **System message** box, replace the current text with the following statement: `The system is an AI teacher that helps people learn about AI`.
5657

57-
3. Below the **System message** box, select **Add an example**, and type the following message and response in the designated boxes:
58+
3. Below the **System message** box, in the **Examples** section, select **Add**. Then type the following message and response in the designated boxes:
5859

5960
- **User**: `What are different types of artificial intelligence?`
6061
- **Assistant**: `There are three main types of artificial intelligence: Narrow or Weak AI (such as virtual assistants like Siri or Alexa, image recognition software, and spam filters), General or Strong AI (AI designed to be as intelligent as a human being. This type of AI does not currently exist and is purely theoretical), and Artificial Superintelligence (AI that is more intelligent than any human being and can perform tasks that are beyond human comprehension. This type of AI is also purely theoretical and has not yet been developed).`
6162

6263
> **Note**: Few-shot examples are used to provide the model with examples of the types of responses that are expected. The model will attempt to reflect the tone and style of the examples in its own responses.
6364
64-
4. Save the changes to start a new session and set the behavioral context of the chat system.
65+
4. Apply the changes to start a new session and set the behavioral context of the chat system.
6566
5. In the **Chat session** section, enter the user query `What is artificial intelligence?`
6667

6768
> **Note**: You may receive a response that the API deployment is not yet ready. If so, wait for a few minutes and try again.
@@ -104,7 +105,7 @@ You can use the prompt and parameters to maximize the likelihood of generating t
104105
In addition to generating natural language responses, you can use GPT models to generate code.
105106
106107
1. In the **Assistant setup** pane, select the **Empty Example** template to reset the system message.
107-
2. Enter the system message: `You are a Python developer.` and save the changes.
108+
2. Enter the system message: `You are a Python developer.` and apply the changes.
108109
3. In the **Chat session** pane, select **Clear chat** to clear the chat history and start a new session.
109110
4. Submit the following user message:
110111

Instructions/Exercises/02-natural-language-azure-openai.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Azure OpenAI provides a web-based portal named **Azure OpenAI Studio**, that you
3636
- **Deployment name**: *A unique name of your choice. You'll use this name later in the lab.*
3737
- **Advanced options**
3838
- **Content filter**: Default
39+
- **Deployment type**: Standard
3940
- **Tokens per minute rate limit**: 5K\*
4041
- **Enable dynamic quota**: Enabled
4142

Instructions/Exercises/03-prompt-engineering.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Azure OpenAI provides a web-based portal named **Azure OpenAI Studio**, that you
3636
- **Deployment name**: *A unique name of your choice. You'll use this name later in the lab.*
3737
- **Advanced options**
3838
- **Content filter**: Default
39+
- **Deployment type**: Standard
3940
- **Tokens per minute rate limit**: 5K\*
4041
- **Enable dynamic quota**: Enabled
4142

@@ -69,7 +70,7 @@ Let's start by exploring some prompt engineering techniques in the Chat playgrou
6970
7071
5. In the **Assistant setup** section change the system message to `You are a news aggregator that categorizes news articles.`
7172
72-
6. Under the new system message, select the **Add an example** button. Add the following example.
73+
6. Under the new system message, in the **Examples** section, select the **Add** button. Then add the following example.
7374
7475
**User:**
7576
@@ -114,7 +115,7 @@ Let's start by exploring some prompt engineering techniques in the Chat playgrou
114115
Entertainment
115116
```
116117
117-
8. Use the **Save changes** button at the top of the **Assistent setup** section to update the system message.
118+
8. Use the **Apply changes** button at the top of the **Assistent setup** section to update the system message.
118119
119120
9. In the **Chat session** section, resubmit the following prompt:
120121
@@ -132,7 +133,7 @@ Let's start by exploring some prompt engineering techniques in the Chat playgrou
132133
133134
The combination of a more specific system message and some examples of expected queries and responses results in a consistant format for the results.
134135
135-
10. In the **Assistant setup** section, change the system message back to the default template, which should be `You are an AI assistant that helps people find information.` with no examples. Then save the changes.
136+
10. In the **Assistant setup** section, change the system message back to the default template, which should be `You are an AI assistant that helps people find information.` with no examples. Then apply the changes.
136137
137138
11. In the **Chat session** section, submit the following prompt:
138139
@@ -144,7 +145,7 @@ Let's start by exploring some prompt engineering techniques in the Chat playgrou
144145
145146
The model will likely respond with an answer to satisfy the prompt, split into a numbered list. This is an appropriate response, but suppose what you actually wanted was for the model to write a Python program that performs the tasks you described?
146147
147-
12. Change the system message to `You are a coding assistant helping write python code.` and click **Save changes**
148+
12. Change the system message to `You are a coding assistant helping write python code.` and apply the changes.
148149
13. Resubmit the following prompt to the model:
149150
150151
```

Instructions/Exercises/04-code-generation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Azure OpenAI provides a web-based portal named **Azure OpenAI Studio**, that you
3636
- **Deployment name**: *A unique name of your choice. You'll use this name later in the lab.*
3737
- **Advanced options**
3838
- **Content filter**: Default
39+
- **Deployment type**: Standard
3940
- **Tokens per minute rate limit**: 5K\*
4041
- **Enable dynamic quota**: Enabled
4142

@@ -50,7 +51,7 @@ Before using in your app, examine how Azure OpenAI can generate and explain code
5051
- **Chat session** - used to submit chat messages and view responses.
5152
- **Configuration** - used to configure settings for the model deployment.
5253
2. In the **Configuration** section, ensure that your model deployment is selected.
53-
3. In the **Assistant setup** area, set the system message to `You are a programming assistant helping write code` and save the changes.
54+
3. In the **Assistant setup** area, set the system message to `You are a programming assistant helping write code` and apply the changes.
5455
4. In the **Chat session**, submit the following query:
5556

5657
```

Instructions/Exercises/06-use-own-data.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Azure OpenAI provides a web-based portal named **Azure OpenAI Studio**, that you
4646
- **Deployment name**: *A unique name of your choice. You'll use this name later in the lab.*
4747
- **Advanced options**
4848
- **Content filter**: Default
49+
- **Deployment type**: Standard
4950
- **Tokens per minute rate limit**: 5K\*
5051
- **Enable dynamic quota**: Enabled
5152

0 commit comments

Comments
 (0)