Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "google_vertex_ai_reasoning_engine" "{{$.PrimaryResourceId}}" {
context_spec {
memory_bank_config {
generation_config {
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-2.5-flash"
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-3.5-flash"
generation_trigger_config {
generation_rule {
idle_duration = "300s"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resource "google_vertex_ai_reasoning_engine" "{{$.PrimaryResourceId}}" {
context_spec {
memory_bank_config {
generation_config {
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-2.5-flash"
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-3.5-flash"
}
similarity_search_config {
embedding_model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/text-embedding-005"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ resource "google_vertex_ai_reasoning_engine" "primary" {
context_spec {
memory_bank_config {
generation_config {
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-2.5-flash"
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-3.5-flash"
generation_trigger_config {
generation_rule {
fixed_interval = "600s"
Expand Down Expand Up @@ -885,7 +885,7 @@ resource "google_vertex_ai_reasoning_engine" "primary" {
context_spec {
memory_bank_config {
generation_config {
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-2.5-flash"
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-3.5-flash"
generation_trigger_config {
generation_rule {
event_count = 10
Expand Down Expand Up @@ -946,7 +946,7 @@ resource "google_vertex_ai_reasoning_engine" "primary" {
context_spec {
memory_bank_config {
generation_config {
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-2.5-flash"
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-3.5-flash"
}
similarity_search_config {
embedding_model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/text-embedding-005"
Expand Down Expand Up @@ -1072,7 +1072,7 @@ resource "google_vertex_ai_reasoning_engine" "primary" {
context_spec {
memory_bank_config {
generation_config {
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-2.5-flash"
model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/gemini-3.5-flash"
}
similarity_search_config {
embedding_model = "projects/${data.google_project.project.project_id}/locations/us-central1/publishers/google/models/text-embedding-005"
Expand Down Expand Up @@ -1728,7 +1728,7 @@ resource "google_vertex_ai_reasoning_engine" "reasoning_engine" {
adk_config {
json_config = jsonencode({
name = "finance_analyst_agent"
model = "gemini-2.5-flash"
model = "gemini-3.5-flash"
description = "A financial analyst that can look up stock values and return them as tables."
instruction = "You are a financial analyst. Output data in tables."
})
Expand Down Expand Up @@ -1760,7 +1760,7 @@ resource "google_vertex_ai_reasoning_engine" "reasoning_engine" {
adk_config {
json_config = jsonencode({
name = "finance_analyst_agent_updated"
model = "gemini-2.5-flash"
model = "gemini-3.5-flash"
description = "An updated financial analyst agent."
instruction = "You are an updated financial analyst."
})
Expand Down