chore: change google region
All checks were successful
Deploy to Staging / Build Images (pull_request) Successful in 38s
Deploy to Staging / Deploy to Staging (pull_request) Successful in 51s
Deploy to Staging / Verify Staging (pull_request) Successful in 9s
Deploy to Staging / Notify Staging Ready (pull_request) Successful in 8s
Deploy to Staging / Notify Staging Failure (pull_request) Has been skipped

This commit is contained in:
Eric Gullickson
2026-02-19 20:59:40 -06:00
parent bf6742f6ea
commit 781241966c
2 changed files with 2 additions and 2 deletions

View File

@@ -206,7 +206,7 @@ services:
VISION_MONTHLY_LIMIT: "1000" VISION_MONTHLY_LIMIT: "1000"
# Vertex AI / Gemini configuration (maintenance schedule extraction) # Vertex AI / Gemini configuration (maintenance schedule extraction)
VERTEX_AI_PROJECT: motovaultpro VERTEX_AI_PROJECT: motovaultpro
VERTEX_AI_LOCATION: us-central1 VERTEX_AI_LOCATION: global
GEMINI_MODEL: gemini-3-flash-preview GEMINI_MODEL: gemini-3-flash-preview
volumes: volumes:
- /tmp/vin-debug:/tmp/vin-debug - /tmp/vin-debug:/tmp/vin-debug

View File

@@ -32,7 +32,7 @@ class Settings:
# Vertex AI / Gemini configuration # Vertex AI / Gemini configuration
self.vertex_ai_project: str = os.getenv("VERTEX_AI_PROJECT", "") self.vertex_ai_project: str = os.getenv("VERTEX_AI_PROJECT", "")
self.vertex_ai_location: str = os.getenv( self.vertex_ai_location: str = os.getenv(
"VERTEX_AI_LOCATION", "us-central1" "VERTEX_AI_LOCATION", "global"
) )
self.gemini_model: str = os.getenv("GEMINI_MODEL", "gemini-2.5-flash") self.gemini_model: str = os.getenv("GEMINI_MODEL", "gemini-2.5-flash")