Skip to content

Commit a88e05b

Browse files
refactoring the network module chnages
1 parent 33763ed commit a88e05b

File tree

10 files changed

+15778
-16373
lines changed

10 files changed

+15778
-16373
lines changed

infra/main.bicep

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ param location string = resourceGroup().location
4242
param azureAiServiceLocation string
4343

4444
@description('Optional. AI model deployment token capacity. Defaults to 150K tokens per minute.')
45-
param capacity int = 150
45+
param gptModelCapacity int = 150
4646

4747
@description('Optional. Enable monitoring for the resources. This will enable Application Insights and Log Analytics. Defaults to false.')
4848
param enableMonitoring bool = false
@@ -80,11 +80,11 @@ param enableTelemetry bool = true
8080

8181
@minLength(1)
8282
@description('Optional. GPT model deployment type. Defaults to GlobalStandard.')
83-
param deploymentType string = 'GlobalStandard'
83+
param gptModelDeploymentType string = 'GlobalStandard'
8484

8585
@minLength(1)
8686
@description('Optional. Name of the GPT model to deploy. Defaults to gpt-4o.')
87-
param llmModel string = 'gpt-4o'
87+
param gptModelName string = 'gpt-4o'
8888

8989
@minLength(1)
9090
@description('Optional. Set the Image tag. Defaults to latest_2025-09-22_455.')
@@ -118,15 +118,15 @@ var solutionSuffix = toLower(trim(replace(
118118
)))
119119

120120
var modelDeployment = {
121-
name: llmModel
121+
name: gptModelName
122122
model: {
123-
name: llmModel
123+
name: gptModelName
124124
format: 'OpenAI'
125125
version: gptModelVersion
126126
}
127127
sku: {
128-
name: deploymentType
129-
capacity: capacity
128+
name: gptModelDeploymentType
129+
capacity: gptModelCapacity
130130
}
131131
raiPolicyName: 'Microsoft.Default'
132132
}

0 commit comments

Comments
 (0)