-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathmain.bicepparam
More file actions
41 lines (40 loc) · 1.15 KB
/
main.bicepparam
File metadata and controls
41 lines (40 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using './main.bicep'
param workloadName = 'ai-document-data-extraction'
param location = 'eastus'
param tags = {
WorkloadName: workloadName
DataClassification: 'General'
Criticality: 'Medium'
Environment: 'Dev'
RepositoryUrl: 'https://github.com/azure-samples/azure-ai-document-processing-samples'
}
param keyVaultName = ''
param logAnalyticsWorkspaceName = ''
param applicationInsightsName = ''
param aiServicesName = ''
param storageAccountName = ''
param aiFoundryHubName = ''
param aiFoundryProjectName = ''
param identities = []
param raiPolicies = [
{
name: workloadName
mode: 'Blocking'
prompt: {}
completion: {}
}
]
param chatModelDeployment = {
name: 'gpt-4.1'
model: { format: 'OpenAI', name: 'gpt-4.1', version: '2025-04-14' }
sku: { name: 'GlobalStandard', capacity: 50 }
raiPolicyName: workloadName
versionUpgradeOption: 'OnceCurrentVersionExpired'
}
param textEmbeddingModelDeployment = {
name: 'text-embedding-3-large'
model: { format: 'OpenAI', name: 'text-embedding-3-large', version: '1' }
sku: { name: 'Standard', capacity: 100 }
raiPolicyName: workloadName
versionUpgradeOption: 'OnceCurrentVersionExpired'
}