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
4 changes: 2 additions & 2 deletions ces_agent_basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ resource "google_ces_agent" "ces_child_agent" {
instruction = "You are a helpful assistant for this example."

model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-2.5-flash"
temperature = 0.5
}

Expand Down Expand Up @@ -116,7 +116,7 @@ resource "google_ces_agent" "ces_agent_basic" {
instruction = "You are a helpful assistant for this example."

model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-2.5-flash"
temperature = 0.5
}

Expand Down
2 changes: 1 addition & 1 deletion ces_agent_remote_dialogflow_agent/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "google_ces_agent" "ces_agent_remote_dialogflow_agent" {
display_name = "my-agent-${local.name_suffix}"

model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-1.5-flash"
temperature = 0.5
}

Expand Down
2 changes: 1 addition & 1 deletion ces_agent_remote_dialogflow_agent_interruption/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "google_ces_agent" "ces_agent_remote_dialogflow_agent_interruption" {
display_name = "my-agent-${local.name_suffix}"

model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-1.5-flash"
temperature = 0.5
}

Expand Down
2 changes: 1 addition & 1 deletion ces_app_ambient_sound_gcs_uri/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ resource "google_ces_app" "ces_app_ambient_sound_gcs_uri" {
}

model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-1.5-flash"
temperature = 0.5
}

Expand Down
2 changes: 1 addition & 1 deletion ces_app_basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ resource "google_ces_app" "ces_app_basic" {
}

model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-1.5-flash"
temperature = 0.5
}

Expand Down
4 changes: 2 additions & 2 deletions ces_example_basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ resource "google_ces_agent" "ces_base_agent" {
instruction = "You are a helpful assistant for this example."

model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-2.5-flash"
temperature = 0.5
}

Expand All @@ -79,7 +79,7 @@ resource "google_ces_agent" "ces_child_agent" {
instruction = "You are a helpful assistant for this example."

model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-2.5-flash"
temperature = 0.5
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ resource "google_ces_guardrail" "ces_guardrail_generative_answer_llm_prompt_secu
custom_policy {
max_conversation_messages = 10
model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-2.5-flash"
temperature = 50
}
prompt = "example_prompt"
Expand Down
2 changes: 1 addition & 1 deletion ces_guardrail_llm_policy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ resource "google_ces_guardrail" "ces_guardrail_llm_policy" {
llm_policy {
max_conversation_messages = 10
model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-2.5-flash"
temperature = 50
}
prompt = "example_prompt"
Expand Down
4 changes: 2 additions & 2 deletions ces_tool_data_store_tool_engine_source_basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ resource "google_ces_tool" "ces_tool_data_store_tool_engine_source_basic" {
modality_type = "TEXT"
rewriter_config {
model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-2.5-flash"
temperature = 1
}
prompt = "example-prompt"
disabled = false
}
summarization_config {
model_settings {
model = "gemini-2.5-flash-001"
model = "gemini-2.5-flash"
temperature = 1
}
prompt = "example-prompt"
Expand Down
4 changes: 0 additions & 4 deletions discoveryengine_dataconnector_jira_with_actions/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,7 @@ resource "google_discovery_engine_data_connector" "jira-with-actions" {
key = "url"
destinations {
host = "https://example.atlassian.net"
port = 123
}
params = jsonencode({
"destination_type": "private"
})
}
connector_modes = ["FEDERATED", "ACTIONS"]
sync_mode = "PERIODIC"
Expand Down