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
{{ message }}
This repository was archived by the owner on Jan 30, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: docs/development/AzureOAIDeployment/DeployingAzureOAI.md
+11-21Lines changed: 11 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,41 +76,31 @@ instance! Simply use either Azure CLI or Azure PowerShell to deploy the bicep fi
76
76
77
77
```sh
78
78
az deployment group create --resource-group <resource group name> --template-file ./main.bicep
79
+
80
+
// Get the endpoint and key of the deployment
81
+
az cognitiveservices account show --name <account name> --resource-group <resource group name>| jq -r .properties.endpoint
82
+
83
+
az cognitiveservices account keys list --name <account name> --resource-group <resource group name>| jq -r .key1
79
84
```
80
85
81
86
#### Using Azure PowerShell
82
87
83
88
```powershell
84
89
New-AzResourceGroupDeployment -ResourceGroupName <resource group name> -TemplateFile ./main.bicep
85
-
```
86
-
87
-
### 3. Configuring the agent to use the deployment
88
-
89
-
You will need to get the endpoint and key of the deployment you just created. You can do this using the following commands in either Azure CLI or Azure PowerShell.
az cognitiveservices account keys list --name <myResourceName> --resource-group <myResourceGroupName>| jq -r .key1
109
-
```
97
+
### 3. Configuring the agent to use the deployment
110
98
111
-
Now that you have the endpoint and key of the deployment, you can open up the `openai-gpt` agent and run `/agent config` to edit the json configuration file with all the details of the deployment. The example below shows the default system prompt and the fields that need to be updated.
99
+
Now that you have the endpoint and key of the deployment, you can open up the `openai-gpt` agent and
100
+
run `/agent config` to edit the json configuration file with all the details of the deployment. The
101
+
example below shows the default system prompt and the fields that need to be updated.
0 commit comments