Skip to content

Commit

Permalink
Merge pull request #6 from cds-snc/feat/adjust_model_capacity
Browse files Browse the repository at this point in the history
Adjust the model plus capacity of default models
  • Loading branch information
sylviamclaughlin authored Feb 20, 2025
2 parents 1876ed3 + 17d3498 commit cf4b913
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion terragrunt/modules/openai_api_key/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ resource "azurerm_cognitive_deployment" "deployment" {
}

scale {
type = "GlobalStandard"
type = "GlobalStandard"
capacity = 50 # Represents 50,000 TPM
}
}
6 changes: 3 additions & 3 deletions terragrunt/modules/openai_api_key/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ variable "openai_deployments" {
}))
default = [
{
name = "openai-gpt4o"
name = "openai-gpt4o-mini"
model = {
name = "gpt-4o"
version = "2024-08-06"
name = "gpt-4o-mini"
version = "2024-07-18"
}
rai_policy_name = ""
}
Expand Down

0 comments on commit cf4b913

Please sign in to comment.