Skip to content

Commit 6c2dadf

Browse files
authored
Merge pull request #76 from nicolgit/main
update gpt version
2 parents ab5935c + 9b09036 commit 6c2dadf

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ To use this app with **YOUR data**, you must perform the following steps on your
6565
3. Create a Shared Access Policy, with _Listen_ claim
6666
4. Create an Azure Map Account
6767
5. Create an Azure OpenAI Service
68-
6. Go to OpenAI Studio > Deployments > Create a new deployment using as model `gpt-4-32k v0613`
68+
6. Go to OpenAI Studio > Deployments > Create a new deployment using as model `gpt-4o version 2024-05-13`
6969
7. Open the Azure Firewall instance you want to monitor, go to Monitoring > Diagnostic Settings > Add Diagnostic Settings:
7070

7171
- Select _all_ _logs_ and "Stream to Event Hub"

bicep/firewall-mon-azure-stuff.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ resource cognitiveServicesDeployment 'Microsoft.CognitiveServices/accounts/deplo
7474
properties: {
7575
model: {
7676
format: 'OpenAI'
77-
name: 'gpt-4-32k'
78-
version: '0613'
77+
name: 'gpt-4o'
78+
version: '2024-05-13'
7979
}
8080
versionUpgradeOption: 'OnceNewDefaultVersionAvailable'
8181
currentCapacity: 2

bicep/firewall-mon-azure-stuff.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"metadata": {
55
"_generator": {
66
"name": "bicep",
7-
"version": "0.29.47.4906",
8-
"templateHash": "4270152477965844669"
7+
"version": "0.33.93.31351",
8+
"templateHash": "8760060908616098772"
99
}
1010
},
1111
"parameters": {
@@ -119,8 +119,8 @@
119119
"properties": {
120120
"model": {
121121
"format": "OpenAI",
122-
"name": "gpt-4-32k",
123-
"version": "0613"
122+
"name": "gpt-4o",
123+
"version": "2024-05-13"
124124
},
125125
"versionUpgradeOption": "OnceNewDefaultVersionAvailable",
126126
"currentCapacity": 2,

firewall-mon-app/src/app/login/login.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ <h1><img alt="logo" src="assets/logo.png" width="72" height="72"
4343
<input title="not used" matInput [(ngModel)]="aoaiEndpoint">
4444
</mat-form-field><br />
4545
<mat-form-field appearance="outline" class="login-field">
46-
<mat-label>Azure OpenAI deployment for a gpt-4-32k v613 model</mat-label>
46+
<mat-label>Azure OpenAI deployment for a gpt-4o version 2024-05-15 model</mat-label>
4747
<input title="not used" matInput [(ngModel)]="aoaiDeploymentId">
4848
</mat-form-field><br />
4949
<mat-form-field appearance="outline" class="login-field">

0 commit comments

Comments
 (0)