Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module "frontend" {
"REPO" : "gov-ai-client",
"DOCKER_BUILDER_CONTAINER" : "gov-ai-client",
"AUTH_PROVIDER_PUBLIC_KEY" : data.aws_ssm_parameter.auth_provider_public_key.value,

"USE_LITE_LLM": true
"LLM_GATEWAY_URL" : local.llm_gateway_url
}

Expand Down
6 changes: 0 additions & 6 deletions terraform/secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@ locals {
name = "OPENAI_API_VERSION"
value = var.openai_api_version
},

{
name = "USE_LITE_LLM"
value = var.use_lite_llm
},

{
name = "MCP_SERVERS"
value = var.mcp_servers
Expand Down
5 changes: 0 additions & 5 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,6 @@ variable "openai_api_version" {
description = "Connect to Azure API"
}

variable "use_lite_llm" {
type = string
description = "Whether to use Lite LLM"
}

variable "mcp_servers" {
type = string
description = "JSON format - this overrides .mcp-servers.yaml"
Expand Down
Loading