Skip to content

Commit 5e79052

Browse files
fix: updated model capacity
1 parent be81e13 commit 5e79052

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

deploy/macae-continer.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ param resourceSize {
2222
maxReplicas: int
2323
}
2424
} = {
25-
gpt4oCapacity: 50
25+
gpt4oCapacity: 5
2626
containerAppSize: {
2727
cpu: '2.0'
2828
memory: '4.0Gi'

deploy/macae-dev.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ resource openai 'Microsoft.CognitiveServices/accounts@2023-10-01-preview' = {
3636
name: 'gpt-4o'
3737
sku: {
3838
name: 'GlobalStandard'
39-
capacity: 15
39+
capacity: 5
4040
}
4141
properties: {
4242
model: {

deploy/macae-large.bicepparam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using './macae.bicep'
22

33
param resourceSize = {
4-
gpt4oCapacity: 50
4+
gpt4oCapacity: 5
55
containerAppSize: {
66
cpu: '2.0'
77
memory: '4.0Gi'

deploy/macae-mini.bicepparam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using './macae.bicep'
22

33
param resourceSize = {
4-
gpt4oCapacity: 15
4+
gpt4oCapacity: 5
55
containerAppSize: {
66
cpu: '1.0'
77
memory: '2.0Gi'

deploy/macae.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ param resourceSize {
2525
maxReplicas: int
2626
}
2727
} = {
28-
gpt4oCapacity: 50
28+
gpt4oCapacity: 5
2929
containerAppSize: {
3030
cpu: '2.0'
3131
memory: '4.0Gi'

infra/macae-dev.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ resource openai 'Microsoft.CognitiveServices/accounts@2023-10-01-preview' = {
3636
name: 'gpt-4o'
3737
sku: {
3838
name: 'GlobalStandard'
39-
capacity: 15
39+
capacity: 5
4040
}
4141
properties: {
4242
model: {

infra/macae-large.bicepparam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using './macae.bicep'
22

33
param resourceSize = {
4-
gpt4oCapacity: 50
4+
gpt4oCapacity: 5
55
containerAppSize: {
66
cpu: '2.0'
77
memory: '4.0Gi'

infra/macae-mini.bicepparam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using './macae.bicep'
22

33
param resourceSize = {
4-
gpt4oCapacity: 15
4+
gpt4oCapacity: 5
55
containerAppSize: {
66
cpu: '1.0'
77
memory: '2.0Gi'

infra/macae.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ param resourceSize {
2525
maxReplicas: int
2626
}
2727
} = {
28-
gpt4oCapacity: 50
28+
gpt4oCapacity: 5
2929
containerAppSize: {
3030
cpu: '2.0'
3131
memory: '4.0Gi'

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ param resourceSize {
2222
maxReplicas: int
2323
}
2424
} = {
25-
gpt4oCapacity: 1
25+
gpt4oCapacity: 5
2626
containerAppSize: {
2727
cpu: '2.0'
2828
memory: '4.0Gi'

0 commit comments

Comments
 (0)