File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
google/cloud/aiplatform/v1beta1 Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,13 @@ option ruby_package = "Google::Cloud::AIPlatform::V1beta1";
4040message Tool {
4141 // GoogleSearch tool type.
4242 // Tool to support Google Search in Model. Powered by Google.
43- message GoogleSearch {}
43+ message GoogleSearch {
44+ // Optional. List of domains to be excluded from the search results.
45+ // The default limit is 2000 domains.
46+ // Example: ["amazon.com", "facebook.com"].
47+ repeated string exclude_domains = 3
48+ [(google.api.field_behavior ) = OPTIONAL ];
49+ }
4450
4551 // Tool that executes code generated by the model, and automatically returns
4652 // the result to the model.
@@ -432,7 +438,11 @@ message GoogleSearchRetrieval {
432438
433439// Tool to search public web data, powered by Vertex AI Search and Sec4
434440// compliance.
435- message EnterpriseWebSearch {}
441+ message EnterpriseWebSearch {
442+ // Optional. List of domains to be excluded from the search results.
443+ // The default limit is 2000 domains.
444+ repeated string exclude_domains = 1 [(google.api.field_behavior ) = OPTIONAL ];
445+ }
436446
437447// Describes the options to customize dynamic retrieval.
438448message DynamicRetrievalConfig {
You can’t perform that action at this time.
0 commit comments