Skip to content

Commit 1ab7359

Browse files
authored
Update connect-services.md
1 parent 64b9ca3 commit 1ab7359

File tree

1 file changed

+5
-5
lines changed
  • articles/cognitive-services/language-service/orchestration-workflow/tutorials

1 file changed

+5
-5
lines changed

articles/cognitive-services/language-service/orchestration-workflow/tutorials/connect-services.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.reviewer: cahann, hazemelh
99
ms.service: cognitive-services
1010
ms.subservice: language-service
1111
ms.topic: tutorial
12-
ms.date: 05/17/2022
12+
ms.date: 05/25/2022
1313
---
1414

1515
# Connect different services with Orchestration workflow
@@ -88,21 +88,21 @@ Now your orchestration project is ready to be used. Any incoming request will be
8888
dotnet add package Azure.AI.Language.Conversations
8989
```
9090

91-
2. In `Program.cs`, replace `{api-key}` and the `{endpoint}` variables. Use the key and endpoint for the Language resource you created earlier. You can find them in the **Keys and Endpoint** tab in your Language resource in Azure.
91+
3. In `Program.cs`, replace `{api-key}` and the `{endpoint}` variables. Use the key and endpoint for the Language resource you created earlier. You can find them in the **Keys and Endpoint** tab in your Language resource in Azure.
9292

9393
```csharp
9494
Uri endpoint = new Uri("{endpoint}");
9595
AzureKeyCredential credential = new AzureKeyCredential("{api-key}");
9696
```
9797

98-
3. Replace the orchestrationProject parameters to **Orchestrator** and **Testing** as below if they are not set already.
98+
4. Replace the orchestrationProject parameters to **Orchestrator** and **Testing** as below if they are not set already.
9999

100100
```csharp
101101
ConversationsProject orchestrationProject = new ConversationsProject("Orchestrator", "Testing");
102102
```
103103

104-
4. Run the project or press F5 in Visual Studio.
105-
5. Input a query such as "read the email from matt" or "hello how are you". You'll now observe different responses for each, a conversational language understanding **EmailProject** response from the first query, and the answer from the **chitchat** knowledge base for the second query.
104+
5. Run the project or press F5 in Visual Studio.
105+
6. Input a query such as "read the email from matt" or "hello how are you". You'll now observe different responses for each, a conversational language understanding **EmailProject** response from the first query, and the answer from the **chitchat** knowledge base for the second query.
106106

107107
**Conversational Language Understanding**:
108108
:::image type="content" source="../media/clu-response-orchestration.png" alt-text="A screenshot showing the sample response from conversational language understanding." lightbox="../media/clu-response-orchestration.png":::

0 commit comments

Comments
 (0)