File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,12 @@ pipeline:
47
47
- AZURE_OPENAI_CHAT_MODEL
48
48
- AZURE_OPENAI_CHAT_DEPLOYMENT_VERSION
49
49
- AZURE_OPENAI_CHAT_DEPLOYMENT_CAPACITY
50
+ - AZURE_OPENAI_EVAL_DEPLOYMENT_SKU
50
51
- AZURE_OPENAI_EMBED_DEPLOYMENT
51
52
- AZURE_OPENAI_EMBED_MODEL
52
53
- AZURE_OPENAI_EMBED_DEPLOYMENT_VERSION
53
54
- AZURE_OPENAI_EMBED_DEPLOYMENT_CAPACITY
55
+ - AZURE_OPENAI_EMBED_DEPLOYMENT_SKU
54
56
- AZURE_OPENAI_EMBED_DIMENSIONS
55
57
- AZURE_OPENAI_EMBEDDING_COLUMN
56
58
- AZURE_OPENAI_EVAL_DEPLOYMENT
Original file line number Diff line number Diff line change @@ -449,12 +449,21 @@ output AZURE_OPENAI_ENDPOINT string = !empty(azureOpenAIEndpoint)
449
449
: (deployAzureOpenAI ? openAI .outputs .endpoint : '' )
450
450
output AZURE_OPENAI_VERSION string = openAIEmbedHost == 'chat' ? azureOpenAIAPIVersion : ''
451
451
output AZURE_OPENAI_CHAT_DEPLOYMENT string = deployAzureOpenAI ? chatDeploymentName : ''
452
+ output AZURE_OPENAI_CHAT_DEPLOYMENT_VERSION string = deployAzureOpenAI ? chatDeploymentVersion : ''
453
+ output AZURE_OPENAI_CHAT_DEPLOYMENT_CAPACITY int = deployAzureOpenAI ? chatDeploymentCapacity : 0
454
+ output AZURE_OPENAI_CHAT_DEPLOYMENT_SKU string = deployAzureOpenAI ? chatDeploymentSku : ''
452
455
output AZURE_OPENAI_CHAT_MODEL string = deployAzureOpenAI ? chatModelName : ''
453
456
output AZURE_OPENAI_EMBED_DEPLOYMENT string = deployAzureOpenAI ? embedDeploymentName : ''
457
+ output AZURE_OPENAI_EMBED_DEPLOYMENT_VERSION string = deployAzureOpenAI ? embedDeploymentVersion : ''
458
+ output AZURE_OPENAI_EMBED_DEPLOYMENT_CAPACITY int = deployAzureOpenAI ? embedDeploymentCapacity : 0
459
+ output AZURE_OPENAI_EMBED_DEPLOYMENT_SKU string = deployAzureOpenAI ? embedDeploymentSku : ''
454
460
output AZURE_OPENAI_EMBED_MODEL string = deployAzureOpenAI ? embedModelName : ''
455
461
output AZURE_OPENAI_EMBED_DIMENSIONS string = deployAzureOpenAI ? string (embedDimensions ) : ''
456
462
457
463
output AZURE_OPENAI_EVAL_DEPLOYMENT string = deployAzureOpenAI ? evalDeploymentName : ''
464
+ output AZURE_OPENAI_EVAL_DEPLOYMENT_VERSION string = deployAzureOpenAI ? evalDeploymentVersion : ''
465
+ output AZURE_OPENAI_EVAL_DEPLOYMENT_CAPACITY string = deployAzureOpenAI ? evalDeploymentCapacity : ''
466
+ output AZURE_OPENAI_EVAL_DEPLOYMENT_SKU string = deployAzureOpenAI ? evalDeploymentSku : ''
458
467
output AZURE_OPENAI_EVAL_MODEL string = deployAzureOpenAI ? evalModelName : ''
459
468
460
469
output POSTGRES_HOST string = postgresServer .outputs .POSTGRES_DOMAIN_NAME
You can’t perform that action at this time.
0 commit comments