We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0ea09f commit 95cd411Copy full SHA for 95cd411
samples-v2/openai_agents/customer_service/customer_service_client.ps1
@@ -1,6 +1,10 @@
1
+param(
2
+ [string]$StartUrl = 'http://localhost:7071/api/orchestrators/customer_service'
3
+)
4
+
5
$ErrorActionPreference = 'Stop'
6
-$orchestration = Invoke-RestMethod 'http://localhost:7071/api/orchestrators/customer_service'
7
+$orchestration = Invoke-RestMethod $StartUrl
8
9
10
while ($true) {
0 commit comments