You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/architecture.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ In this workshop, you will create the Contoso Sales Agent: a conversational agen
8
8
9
9
This agent is built on Microsoft Azure services.
10
10
11
-
-**Generative AI model**: The underlying LLM powering this app is the [Azure OpenAI gpt-4o](https://learn.microsoft.com/azure/ai-services/openai/concepts/models?tabs=global-standard%2Cstandard-chat-completions#gpt-4o-and-gpt-4-turbo){:target="_blank"} LLM.
11
+
-**Generative AI model**: The underlying LLM powering this app is the [Azure OpenAI gpt-4o-mini](https://learn.microsoft.com/azure/ai-services/openai/concepts/models?tabs=global-standard%2Cstandard-chat-completions#gpt-4o-mini-and-gpt-4-turbo){:target="_blank"} LLM.
12
12
13
13
-**Vector Store**: We will provide the agent with product information as a PDF file to support its queries. The agent will use the "basic agent setup" of the [Foundry Agent Service file search tool](https://learn.microsoft.com/azure/ai-services/agents/how-to/tools/file-search?tabs=python&pivots=overview){:target="_blank"} to find relevant portions of the document with vector search and provide them to the agent as context.
Copy file name to clipboardExpand all lines: docs/docs/includes/introduction-self-guided.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,10 +84,9 @@ The following resources will be created in the **rg-agent-workshop-****** resour
84
84
85
85
- An **Azure AI Foundry hub** named **foundry-******
86
86
- An **Azure AI Foundry project** named **project-******
87
-
- A **Serverless (pay-as-you-go) GPT-4o model deployment** named **gpt-4o**. See pricing details [here](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/){:target="_blank"}.
88
-
- A **Grounding with Bing Search** resource. See the [documentation](https://learn.microsoft.com/azure/ai-services/agents/how-to/tools/bing-grounding) and [pricing](https://www.microsoft.com/en-us/bing/apis/grounding-pricing){:target="_blank"} for details.
87
+
- A **Serverless (pay-as-you-go) GPT-4o model deployment** named **gpt-4o-mini**. See pricing details [here](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/){:target="_blank"}.
89
88
90
-
!!! warning "You will need 140K TPM quota availability for the gpt-4o Global Standard SKU, not because the agent uses lots of tokens, but due to the frequency of calls made by the agent to the model. Review your quota availability in the [AI Foundry Management Center](https://ai.azure.com/managementCenter/quota){:target="_blank"}."
89
+
!!! warning "You will need 140K TPM quota availability for the gpt-4o-mini Global Standard SKU, not because the agent uses lots of tokens, but due to the frequency of calls made by the agent to the model. Review your quota availability in the [AI Foundry Management Center](https://ai.azure.com/managementCenter/quota){:target="_blank"}."
91
90
92
91
We have provided a bash script to automate the deployment of the resources required for the workshop. Alternatively, you may deploy resources manually using Azure AI Foundry studio. Select the desired tab.
93
92
@@ -146,11 +145,11 @@ We have provided a bash script to automate the deployment of the resources requi
146
145
3. From **My assets**, select**Models + endpoints**.
147
146
4. Select **Deploy Model / Deploy Base Model**.
148
147
149
-
- Select **gpt-4o** from the model list, thenselect**Confirm**.
148
+
- Select **gpt-4o-mini** from the model list, thenselect**Confirm**.
150
149
- Name the deployment
151
150
152
151
```text
153
-
gpt-4o
152
+
gpt-4o-mini
154
153
```
155
154
156
155
- Deployment type: Select **Global Standard**.
@@ -197,7 +196,7 @@ We have provided a bash script to automate the deployment of the resources requi
197
196
4. Run the following command to set the [ASP.NET Core safe secret](https://learn.microsoft.com/aspnet/core/security/app-secrets){:target="_blank"} for the model deployment name:
198
197
199
198
```bash
200
-
dotnet user-secrets set "Azure:ModelName" "gpt-4o" --project "$CSHARP_PROJECT_PATH"
199
+
dotnet user-secrets set "Azure:ModelName" "gpt-4o-mini" --project "$CSHARP_PROJECT_PATH"
201
200
```
202
201
203
202
5. Add the **Bing connection ID** to the user secrets for grounding with Bing search.
0 commit comments