Skip to content

Commit 30b85ce

Browse files
update image tag and build main.bicep
1 parent 244b860 commit 30b85ce

File tree

5 files changed

+87
-45
lines changed

5 files changed

+87
-45
lines changed

documents/CustomizingAzdParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ By default this template will use the environment name as the prefix to prevent
1919
| `AZURE_ENV_OPENAI_API_VERSION` | string | `2024-02-15-preview` | Specifies the API version for Azure OpenAI. |
2020
| `AZURE_OPEN_AI_DEPLOYMENT_MODEL_CAPACITY` | integer | `30` | Sets the GPT model capacity. |
2121
| `AZURE_OPENAI_EMBEDDING_MODEL` | string | `text-embedding-ada-002` | Sets the name of the embedding model to use. |
22-
| `AZURE_ENV_IMAGETAG` | string | `latest_migrated` | Sets the image tag (`latest`, `dev`, `hotfix`, `latest_migrated`, etc.). |
22+
| `AZURE_ENV_IMAGETAG` | string | `latest` | Sets the image tag (`latest`, `dev`, `hotfix`, etc.). |
2323
| `AZURE_OPENAI_EMBEDDING_MODEL_CAPACITY` | integer | `80` | Sets the capacity for the embedding model deployment. |
2424
| `AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID` | string | ` ` *(empty)* | Reuses an existing Log Analytics Workspace instead of creating a new one. |
2525

documents/DeploymentGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ When you start the deployment, most parameters will have **default values**, but
118118
| **GPT Model Deployment Capacity** | Configure capacity for **GPT models** (in thousands). | 30k |
119119
| **Embedding Model** | Default: **text-embedding-ada-002**. | text-embedding-ada-002 |
120120
| **Embedding Model Capacity** | Set the capacity for **embedding models** (in thousands). | 80k |
121-
| **Image Tag** | Docker image tag to deploy. Common values: `latest`, `dev`, `hotfix`, `latest_migrated`. | latest\_migrated |
121+
| **Image Tag** | Docker image tag to deploy. Common values: `latest`, `dev`, `hotfix`. | latest\_migrated |
122122
| **Existing Log Analytics Workspace** | To reuse an existing Log Analytics Workspace ID. | *(empty)* |
123123

124124

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ param embeddingModel string = 'text-embedding-ada-002'
5656
@description('Capacity of the Embedding Model deployment')
5757
param embeddingDeploymentCapacity int = 80
5858

59-
param imageTag string = 'latest_migrated'
59+
param imageTag string = 'latest'
6060

6161
param AZURE_LOCATION string=''
6262
var solutionLocation = empty(AZURE_LOCATION) ? resourceGroup().location : AZURE_LOCATION

infra/main.bicepparam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ param gptModelVersion = readEnvironmentVariable('AZURE_ENV_MODEL_VERSION', '2024
1010
param azureOpenAIApiVersion = readEnvironmentVariable('AZURE_ENV_OPENAI_API_VERSION', '2024-02-15-preview')
1111
param gptDeploymentCapacity = int(readEnvironmentVariable('AZURE_OPEN_AI_DEPLOYMENT_MODEL_CAPACITY', '30'))
1212
param embeddingModel = readEnvironmentVariable('AZURE_OPENAI_EMBEDDING_MODEL', 'text-embedding-ada-002')
13-
param imageTag = readEnvironmentVariable('AZURE_ENV_IMAGETAG', 'latest_migrated')
13+
param imageTag = readEnvironmentVariable('AZURE_ENV_IMAGETAG', 'latest')
1414
param embeddingDeploymentCapacity = int(readEnvironmentVariable('AZURE_OPENAI_EMBEDDING_MODEL_CAPACITY', '80'))
1515
param existingLogAnalyticsWorkspaceId = readEnvironmentVariable('AZURE_ENV_LOG_ANALYTICS_WORKSPACE_ID', '')

0 commit comments

Comments
 (0)