Skip to content

Commit 2828f57

Browse files
Change deployment region to us-central1 for Gemini Live Native Audio
The Gemini Live Native Audio model is only available in us-central1. Also update model name to Vertex AI GA version. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a853f52 commit 2828f57

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [main]
88

99
env:
10-
REGION: asia-southeast1
10+
REGION: us-central1
1111
SERVICE_NAME: jemmie-backend
1212

1313
jobs:

docs/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,6 @@ gcloud projects add-iam-policy-binding $PROJECT_ID \
142142
Check Cloud Run timeout and session affinity settings:
143143
```bash
144144
gcloud run services describe jemmie-backend \
145-
--region=asia-southeast1 \
145+
--region=us-central1 \
146146
--format='yaml(spec.template.spec.containers[0].env)'
147147
```

src/agent/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from google.adk.agents.run_config import RunConfig, StreamingMode
44

5-
MODEL_NAME = "gemini-2.5-flash-native-audio-preview-12-2025"
5+
MODEL_NAME = "gemini-live-2.5-flash-native-audio"
66

77
INPUT_SAMPLE_RATE = 16000
88
OUTPUT_SAMPLE_RATE = 24000

tests/test_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class TestAgentConfig:
5050
"""Tests for agent configuration."""
5151

5252
def test_model_name(self) -> None:
53-
assert MODEL_NAME == "gemini-2.5-flash-native-audio-preview-12-2025"
53+
assert MODEL_NAME == "gemini-live-2.5-flash-native-audio"
5454

5555
def test_sample_rates(self) -> None:
5656
assert INPUT_SAMPLE_RATE == 16000

0 commit comments

Comments
 (0)