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
9 changes: 9 additions & 0 deletions mmv1/products/ces/AppVersion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2161,6 +2161,15 @@ properties:
type: String
description: The prompt definition. If not set, default prompt will be used.
output: true
- name: snippetsConfig
type: NestedObject
description: Snippets configuration.
output: true
properties:
- name: enableSnippets
type: Boolean
description: Whether snippets are enabled.
output: true
- name: summarizationConfig
type: NestedObject
description: Summarization configuration.
Expand Down
7 changes: 7 additions & 0 deletions mmv1/products/ces/Tool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,13 @@ properties:
- name: prompt
type: String
description: The prompt definition. If not set, default prompt will be used.
- name: snippetsConfig
type: NestedObject
description: Snippets configuration.
properties:
- name: enableSnippets
type: Boolean
description: Whether snippets are enabled.
- name: summarizationConfig
type: NestedObject
description: Summarization configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ resource "google_ces_tool" "{{$.PrimaryResourceId}}" {
grounding_level = 3
disabled = false
}
snippets_config {
enable_snippets = true
}
}

engine_source {
Expand Down
3 changes: 3 additions & 0 deletions mmv1/third_party/terraform/services/ces/ces_tool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,9 @@ resource "google_ces_tool" "ces_tool_data_store_tool_engine_source_basic" {
grounding_level = 3
disabled = false
}
snippets_config {
enable_snippets = true
}
}

engine_source {
Expand Down
Loading