Skip to content

Commit 127f5a5

Browse files
added params as optional
1 parent f458fec commit 127f5a5

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

infra/deploy_ai_foundry.bicep

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ param keyVaultName string
1414
@description('Required. Indicates the type of Deployment.')
1515
param deploymentType string
1616

17-
@description('Required. GPT Model Name')
18-
param gptModelName string
17+
@description('Optional. Name of the GPT model to deploy:')
18+
param gptModelName string = 'gpt-4.1'
1919

20-
@description('Required. GPT Model Version.')
21-
param gptModelVersion string
20+
@description('Optional. Version of the GPT model to deploy:')
21+
param gptModelVersion string = '2025-04-14'
2222

23-
@description('Required. Azure OepnAI API Version.')
24-
param azureOpenaiAPIVersion string
23+
@description('Optional. API version for Azure OpenAI service. This should be a valid API version supported by the service.')
24+
param azureOpenaiAPIVersion string = '2025-01-01-preview'
2525

2626
@description('Required. Param to get Deployment Capacity.')
2727
param gptDeploymentCapacity int

0 commit comments

Comments
 (0)