Skip to content

Commit fb77e9f

Browse files
Merge pull request #212600 from hazemelh/patch-23
Update Orchestrator tutorial
2 parents 2e8b28c + b475850 commit fb77e9f

File tree

1 file changed

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

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ Now your orchestration project is ready to be used. Any incoming request will be
8787
```powershell
8888
dotnet add package Azure.AI.Language.Conversations
8989
```
90+
Alternatively, you can search for "Azure.AI.Language.Conversations" in the NuGet package manager and install the latest release.
9091

9192
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.
9293

@@ -95,10 +96,11 @@ Uri endpoint = new Uri("{endpoint}");
9596
AzureKeyCredential credential = new AzureKeyCredential("{api-key}");
9697
```
9798

98-
4. Replace the orchestrationProject parameters to **Orchestrator** and **Testing** as below if they are not set already.
99+
4. Replace the project and deployment parameters to **Orchestrator** and **Testing** as below if they are not set already.
99100

100101
```csharp
101-
ConversationsProject orchestrationProject = new ConversationsProject("Orchestrator", "Testing");
102+
string projectName = "Orchestrator";
103+
string deploymentName = "Testing";
102104
```
103105

104106
5. Run the project or press F5 in Visual Studio.

0 commit comments

Comments
 (0)