Skip to content

Commit bda70eb

Browse files
Update main.bicep file
1 parent 6f192b9 commit bda70eb

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

infra/main.bicep

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,25 @@ var safePrefix = length(Prefix) > 20 ? substring(Prefix, 0, 20) : Prefix
3131
])
3232
@description('Location for all Ai services resources. This location can be different from the resource group location.')
3333
param AzureAiServiceLocation string // The location used for all deployed resources. This location must be in the same region as the resource group.
34+
35+
@minValue(5)
36+
@description('Capacity of the GPT deployment:')
3437
param capacity int = 5
38+
39+
@minLength(1)
40+
@description('GPT model deployment type:')
3541
param deploymentType string = 'GlobalStandard'
42+
43+
@minLength(1)
44+
@description('Name of the GPT model to deploy:')
3645
param llmModel string = 'gpt-4o'
46+
47+
@minLength(1)
48+
@description('Set the Image tag:')
3749
param imageVersion string = 'latest'
50+
51+
@minLength(1)
52+
@description('Version of the GPT model to deploy:')
3853
param gptModelVersion string = '2024-08-06'
3954

4055

0 commit comments

Comments
 (0)