google-cloud-ces-v1 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/ces/v1/agent_card_pb.rb +26 -0
  3. data/lib/google/cloud/ces/v1/agent_pb.rb +1 -1
  4. data/lib/google/cloud/ces/v1/app_pb.rb +4 -1
  5. data/lib/google/cloud/ces/v1/common_pb.rb +3 -1
  6. data/lib/google/cloud/ces/v1/conversation_pb.rb +1 -1
  7. data/lib/google/cloud/ces/v1/deployment_pb.rb +7 -1
  8. data/lib/google/cloud/ces/v1/mcp_tool_pb.rb +2 -1
  9. data/lib/google/cloud/ces/v1/mcp_toolset_pb.rb +4 -1
  10. data/lib/google/cloud/ces/v1/mocks_pb.rb +26 -0
  11. data/lib/google/cloud/ces/v1/python_function_pb.rb +2 -1
  12. data/lib/google/cloud/ces/v1/session_service_pb.rb +6 -1
  13. data/lib/google/cloud/ces/v1/tool_pb.rb +3 -1
  14. data/lib/google/cloud/ces/v1/tool_service/client.rb +10 -2
  15. data/lib/google/cloud/ces/v1/tool_service/rest/client.rb +10 -2
  16. data/lib/google/cloud/ces/v1/tool_service_pb.rb +3 -1
  17. data/lib/google/cloud/ces/v1/toolset_pb.rb +2 -1
  18. data/lib/google/cloud/ces/v1/version.rb +1 -1
  19. data/lib/google/cloud/ces/v1/widget_tool_pb.rb +3 -1
  20. data/proto_docs/google/api/routing.rb +463 -0
  21. data/proto_docs/google/cloud/ces/v1/agent.rb +9 -0
  22. data/proto_docs/google/cloud/ces/v1/agent_card.rb +122 -0
  23. data/proto_docs/google/cloud/ces/v1/app.rb +108 -7
  24. data/proto_docs/google/cloud/ces/v1/common.rb +57 -0
  25. data/proto_docs/google/cloud/ces/v1/conversation.rb +13 -6
  26. data/proto_docs/google/cloud/ces/v1/deployment.rb +105 -0
  27. data/proto_docs/google/cloud/ces/v1/mcp_tool.rb +25 -0
  28. data/proto_docs/google/cloud/ces/v1/mcp_toolset.rb +47 -0
  29. data/proto_docs/google/cloud/ces/v1/mocks.rb +60 -0
  30. data/proto_docs/google/cloud/ces/v1/python_function.rb +3 -0
  31. data/proto_docs/google/cloud/ces/v1/session_service.rb +32 -0
  32. data/proto_docs/google/cloud/ces/v1/tool.rb +21 -11
  33. data/proto_docs/google/cloud/ces/v1/tool_service.rb +17 -0
  34. data/proto_docs/google/cloud/ces/v1/toolset.rb +5 -0
  35. data/proto_docs/google/cloud/ces/v1/widget_tool.rb +36 -0
  36. metadata +6 -1
@@ -27,58 +27,63 @@ module Google
27
27
  # @return [::Google::Cloud::Ces::V1::ClientFunction]
28
28
  # Optional. The client function.
29
29
  #
30
- # Note: The following fields are mutually exclusive: `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
30
+ # Note: The following fields are mutually exclusive: `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
31
31
  # @!attribute [rw] open_api_tool
32
32
  # @return [::Google::Cloud::Ces::V1::OpenApiTool]
33
33
  # Optional. The open API tool.
34
34
  #
35
- # Note: The following fields are mutually exclusive: `open_api_tool`, `client_function`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
35
+ # Note: The following fields are mutually exclusive: `open_api_tool`, `client_function`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
36
36
  # @!attribute [rw] google_search_tool
37
37
  # @return [::Google::Cloud::Ces::V1::GoogleSearchTool]
38
38
  # Optional. The google search tool.
39
39
  #
40
- # Note: The following fields are mutually exclusive: `google_search_tool`, `client_function`, `open_api_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
40
+ # Note: The following fields are mutually exclusive: `google_search_tool`, `client_function`, `open_api_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
41
41
  # @!attribute [rw] connector_tool
42
42
  # @return [::Google::Cloud::Ces::V1::ConnectorTool]
43
43
  # Optional. The Integration Connector tool.
44
44
  #
45
- # Note: The following fields are mutually exclusive: `connector_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
45
+ # Note: The following fields are mutually exclusive: `connector_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
46
46
  # @!attribute [rw] data_store_tool
47
47
  # @return [::Google::Cloud::Ces::V1::DataStoreTool]
48
48
  # Optional. The data store tool.
49
49
  #
50
- # Note: The following fields are mutually exclusive: `data_store_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
50
+ # Note: The following fields are mutually exclusive: `data_store_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
51
51
  # @!attribute [rw] python_function
52
52
  # @return [::Google::Cloud::Ces::V1::PythonFunction]
53
53
  # Optional. The python function tool.
54
54
  #
55
- # Note: The following fields are mutually exclusive: `python_function`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
55
+ # Note: The following fields are mutually exclusive: `python_function`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
56
56
  # @!attribute [rw] mcp_tool
57
57
  # @return [::Google::Cloud::Ces::V1::McpTool]
58
58
  # Optional. The MCP tool. An MCP tool cannot be created or updated directly
59
59
  # and is managed by the MCP toolset.
60
60
  #
61
- # Note: The following fields are mutually exclusive: `mcp_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
61
+ # Note: The following fields are mutually exclusive: `mcp_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
62
62
  # @!attribute [rw] file_search_tool
63
63
  # @return [::Google::Cloud::Ces::V1::FileSearchTool]
64
64
  # Optional. The file search tool.
65
65
  #
66
- # Note: The following fields are mutually exclusive: `file_search_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `system_tool`, `agent_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
66
+ # Note: The following fields are mutually exclusive: `file_search_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `system_tool`, `agent_tool`, `widget_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
67
67
  # @!attribute [rw] system_tool
68
68
  # @return [::Google::Cloud::Ces::V1::SystemTool]
69
69
  # Optional. The system tool.
70
70
  #
71
- # Note: The following fields are mutually exclusive: `system_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `agent_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
71
+ # Note: The following fields are mutually exclusive: `system_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `agent_tool`, `widget_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
72
72
  # @!attribute [rw] agent_tool
73
73
  # @return [::Google::Cloud::Ces::V1::AgentTool]
74
74
  # Optional. The agent tool.
75
75
  #
76
- # Note: The following fields are mutually exclusive: `agent_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
76
+ # Note: The following fields are mutually exclusive: `agent_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `widget_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
77
77
  # @!attribute [rw] widget_tool
78
78
  # @return [::Google::Cloud::Ces::V1::WidgetTool]
79
79
  # Optional. The widget tool.
80
80
  #
81
- # Note: The following fields are mutually exclusive: `widget_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
81
+ # Note: The following fields are mutually exclusive: `widget_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `remote_agent_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
82
+ # @!attribute [rw] remote_agent_tool
83
+ # @return [::Google::Cloud::Ces::V1::RemoteAgentTool]
84
+ # Optional. The remote agent tool.
85
+ #
86
+ # Note: The following fields are mutually exclusive: `remote_agent_tool`, `client_function`, `open_api_tool`, `google_search_tool`, `connector_tool`, `data_store_tool`, `python_function`, `mcp_tool`, `file_search_tool`, `system_tool`, `agent_tool`, `widget_tool`. If a field in that set is populated, all other fields in the set will automatically be cleared.
82
87
  # @!attribute [rw] name
83
88
  # @return [::String]
84
89
  # Identifier. The resource name of the tool. Format:
@@ -98,6 +103,11 @@ module Google
98
103
  # @!attribute [rw] execution_type
99
104
  # @return [::Google::Cloud::Ces::V1::ExecutionType]
100
105
  # Optional. The execution type of the tool.
106
+ # @!attribute [rw] timeout
107
+ # @return [::Google::Protobuf::Duration]
108
+ # Optional. The timeout for the tool execution. If not set, the default
109
+ # timeout is 30 seconds for `SYNCHRONOUS` tools and 60 seconds for
110
+ # `ASYNCHRONOUS` tools.
101
111
  # @!attribute [r] create_time
102
112
  # @return [::Google::Protobuf::Timestamp]
103
113
  # Output only. Timestamp when the tool was created.
@@ -56,6 +56,11 @@ module Google
56
56
  # @return [::Google::Protobuf::Struct]
57
57
  # Optional. The input parameters and values for the tool in JSON object
58
58
  # format.
59
+ # @!attribute [rw] mock_config
60
+ # @return [::Google::Cloud::Ces::V1::MockConfig]
61
+ # Optional. Mock configuration for the tool execution.
62
+ # If this field is set, tools that call other tools will be
63
+ # mocked based on the provided patterns and responses.
59
64
  class ExecuteToolRequest
60
65
  include ::Google::Protobuf::MessageExts
61
66
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -83,6 +88,13 @@ module Google
83
88
  # @!attribute [rw] variables
84
89
  # @return [::Google::Protobuf::Struct]
85
90
  # The variable values at the end of the tool execution.
91
+ # @!attribute [rw] citations
92
+ # @return [::Google::Cloud::Ces::V1::Citations]
93
+ # Citations that provide the source information for the tool's execution.
94
+ # @!attribute [rw] google_search_suggestions
95
+ # @return [::Google::Cloud::Ces::V1::GoogleSearchSuggestions]
96
+ # The suggestions returned from Google Search as a result of invoking the
97
+ # Google Search Tool during the tool execution.
86
98
  class ExecuteToolResponse
87
99
  include ::Google::Protobuf::MessageExts
88
100
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -148,6 +160,11 @@ module Google
148
160
  # @return [::Array<::String>]
149
161
  # Optional. The identifiers of the tools to retrieve from the toolset.
150
162
  # If empty, all tools in the toolset will be returned.
163
+ # @!attribute [rw] bypass_persistence_config
164
+ # @return [::Boolean]
165
+ # Optional. If true, the returned tools will contain raw descriptions and
166
+ # schemas directly from the server, bypassing any stored persistence
167
+ # configurations (overrides/snapshots).
151
168
  class RetrieveToolsRequest
152
169
  include ::Google::Protobuf::MessageExts
153
170
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -53,6 +53,11 @@ module Google
53
53
  # @!attribute [rw] description
54
54
  # @return [::String]
55
55
  # Optional. The description of the toolset.
56
+ # @!attribute [rw] timeout
57
+ # @return [::Google::Protobuf::Duration]
58
+ # Optional. The timeout for the toolset execution. If not set, the default
59
+ # timeout is 30 seconds for `SYNCHRONOUS` toolsets and 60 seconds for
60
+ # `ASYNCHRONOUS` toolsets.
56
61
  # @!attribute [r] create_time
57
62
  # @return [::Google::Protobuf::Timestamp]
58
63
  # Output only. Timestamp when the toolset was created.
@@ -45,10 +45,46 @@ module Google
45
45
  # @return [::Google::Cloud::Ces::V1::WidgetTool::DataMapping]
46
46
  # Optional. The mapping that defines how data from a source tool is mapped to
47
47
  # the widget's input parameters.
48
+ # @!attribute [rw] text_response_config
49
+ # @return [::Google::Cloud::Ces::V1::WidgetTool::TextResponseConfig]
50
+ # Optional. Configuration for always-included text responses.
48
51
  class WidgetTool
49
52
  include ::Google::Protobuf::MessageExts
50
53
  extend ::Google::Protobuf::MessageExts::ClassMethods
51
54
 
55
+ # Configuration for the text response returned with the widget.
56
+ # @!attribute [rw] type
57
+ # @return [::Google::Cloud::Ces::V1::WidgetTool::TextResponseConfig::Type]
58
+ # Optional. The strategy for providing the text response.
59
+ # @!attribute [rw] static_text
60
+ # @return [::String]
61
+ # Optional. The static text response to return when type is STATIC.
62
+ # @!attribute [rw] text_response_instruction
63
+ # @return [::String]
64
+ # Optional. Instruction for the LLM on how to generate the text response.
65
+ # Used as the description for the text response parameter if type is
66
+ # LLM_GENERATED.
67
+ class TextResponseConfig
68
+ include ::Google::Protobuf::MessageExts
69
+ extend ::Google::Protobuf::MessageExts::ClassMethods
70
+
71
+ # Defines how the text response is produced.
72
+ module Type
73
+ # Unspecified type.
74
+ TYPE_UNSPECIFIED = 0
75
+
76
+ # The LLM dynamically decides whether to generate a text response
77
+ # alongside the widget based on the conversation context.
78
+ NONE = 1
79
+
80
+ # The LLM is explicitly required to generate a text response.
81
+ LLM_GENERATED = 2
82
+
83
+ # A pre-defined static text response is always used.
84
+ STATIC = 3
85
+ end
86
+ end
87
+
52
88
  # Configuration for mapping data from a source tool to the widget's input
53
89
  # parameters.
54
90
  # @!attribute [rw] source_tool_name
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-ces-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -66,6 +66,7 @@ files:
66
66
  - README.md
67
67
  - lib/google-cloud-ces-v1.rb
68
68
  - lib/google/cloud/ces/v1.rb
69
+ - lib/google/cloud/ces/v1/agent_card_pb.rb
69
70
  - lib/google/cloud/ces/v1/agent_pb.rb
70
71
  - lib/google/cloud/ces/v1/agent_service.rb
71
72
  - lib/google/cloud/ces/v1/agent_service/client.rb
@@ -101,6 +102,7 @@ files:
101
102
  - lib/google/cloud/ces/v1/guardrail_pb.rb
102
103
  - lib/google/cloud/ces/v1/mcp_tool_pb.rb
103
104
  - lib/google/cloud/ces/v1/mcp_toolset_pb.rb
105
+ - lib/google/cloud/ces/v1/mocks_pb.rb
104
106
  - lib/google/cloud/ces/v1/omnichannel_pb.rb
105
107
  - lib/google/cloud/ces/v1/omnichannel_service_pb.rb
106
108
  - lib/google/cloud/ces/v1/open_api_tool_pb.rb
@@ -148,7 +150,9 @@ files:
148
150
  - proto_docs/google/api/field_behavior.rb
149
151
  - proto_docs/google/api/launch_stage.rb
150
152
  - proto_docs/google/api/resource.rb
153
+ - proto_docs/google/api/routing.rb
151
154
  - proto_docs/google/cloud/ces/v1/agent.rb
155
+ - proto_docs/google/cloud/ces/v1/agent_card.rb
152
156
  - proto_docs/google/cloud/ces/v1/agent_service.rb
153
157
  - proto_docs/google/cloud/ces/v1/agent_tool.rb
154
158
  - proto_docs/google/cloud/ces/v1/agent_transfers.rb
@@ -172,6 +176,7 @@ files:
172
176
  - proto_docs/google/cloud/ces/v1/guardrail.rb
173
177
  - proto_docs/google/cloud/ces/v1/mcp_tool.rb
174
178
  - proto_docs/google/cloud/ces/v1/mcp_toolset.rb
179
+ - proto_docs/google/cloud/ces/v1/mocks.rb
175
180
  - proto_docs/google/cloud/ces/v1/omnichannel.rb
176
181
  - proto_docs/google/cloud/ces/v1/omnichannel_service.rb
177
182
  - proto_docs/google/cloud/ces/v1/open_api_tool.rb