google-apis-ces_v1 0.12.0 → 0.13.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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 843162bf75a2f854a1980e9aaa3f04f0e88e7b2b095dc99433f9b3c025b41fb3
|
|
4
|
+
data.tar.gz: 33656182a60bdc110242a2eb5596298233f8c8ec581e0aeff8d2d29dda483f64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5bd37732fc70d26adec9dd75b72699149e6f1387c18c1eb8bd947930af634fc122a5e48011c04e82d616241fd676a68618d99ef19f2dde7bf6773038a029d7e0
|
|
7
|
+
data.tar.gz: c939caee667a9572d43b444409b973c2960551a05b85f054ae0fd48e3225918a44bab5c2f6aaebf3e83c6adfbcadb698369794dad7b49c71621bbd63cbedb015
|
data/CHANGELOG.md
CHANGED
|
@@ -2164,11 +2164,25 @@ module Google
|
|
|
2164
2164
|
# @return [Array<Google::Apis::CesV1::Message>]
|
|
2165
2165
|
attr_accessor :messages
|
|
2166
2166
|
|
|
2167
|
+
# Output only. The full dynamically resolved developer instruction generated
|
|
2168
|
+
# from templates. This field is only populated on-demand when requested during
|
|
2169
|
+
# history retrieval. It is not persisted.
|
|
2170
|
+
# Corresponds to the JSON property `resolvedDeveloperInstruction`
|
|
2171
|
+
# @return [String]
|
|
2172
|
+
attr_accessor :resolved_developer_instruction
|
|
2173
|
+
|
|
2167
2174
|
# A span is a unit of work or a single operation during the request processing.
|
|
2168
2175
|
# Corresponds to the JSON property `rootSpan`
|
|
2169
2176
|
# @return [Google::Apis::CesV1::Span]
|
|
2170
2177
|
attr_accessor :root_span
|
|
2171
2178
|
|
|
2179
|
+
# Optional. Variables or configurations referenced by the template engine during
|
|
2180
|
+
# dynamic prompt generation. This allows reconstructing the exact prompt sent to
|
|
2181
|
+
# the model for this turn.
|
|
2182
|
+
# Corresponds to the JSON property `templateAttributes`
|
|
2183
|
+
# @return [Hash<String,Object>]
|
|
2184
|
+
attr_accessor :template_attributes
|
|
2185
|
+
|
|
2172
2186
|
# Optional. The intended ground-truth text from the Simulated Caller (Polysynth).
|
|
2173
2187
|
# Only populated when word error rate metrics are enabled.
|
|
2174
2188
|
# Corresponds to the JSON property `userIntendedText`
|
|
@@ -2182,7 +2196,9 @@ module Google
|
|
|
2182
2196
|
# Update properties of this object
|
|
2183
2197
|
def update!(**args)
|
|
2184
2198
|
@messages = args[:messages] if args.key?(:messages)
|
|
2199
|
+
@resolved_developer_instruction = args[:resolved_developer_instruction] if args.key?(:resolved_developer_instruction)
|
|
2185
2200
|
@root_span = args[:root_span] if args.key?(:root_span)
|
|
2201
|
+
@template_attributes = args[:template_attributes] if args.key?(:template_attributes)
|
|
2186
2202
|
@user_intended_text = args[:user_intended_text] if args.key?(:user_intended_text)
|
|
2187
2203
|
end
|
|
2188
2204
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CesV1
|
|
18
18
|
# Version of the google-apis-ces_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.13.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260806"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1894,8 +1894,10 @@ module Google
|
|
|
1894
1894
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1895
1895
|
collection :messages, as: 'messages', class: Google::Apis::CesV1::Message, decorator: Google::Apis::CesV1::Message::Representation
|
|
1896
1896
|
|
|
1897
|
+
property :resolved_developer_instruction, as: 'resolvedDeveloperInstruction'
|
|
1897
1898
|
property :root_span, as: 'rootSpan', class: Google::Apis::CesV1::Span, decorator: Google::Apis::CesV1::Span::Representation
|
|
1898
1899
|
|
|
1900
|
+
hash :template_attributes, as: 'templateAttributes'
|
|
1899
1901
|
property :user_intended_text, as: 'userIntendedText'
|
|
1900
1902
|
end
|
|
1901
1903
|
end
|
|
@@ -842,6 +842,8 @@ module Google
|
|
|
842
842
|
# @param [String] source
|
|
843
843
|
# Optional. Indicate the source of the conversation. If not set, all source will
|
|
844
844
|
# be searched.
|
|
845
|
+
# @param [String] view
|
|
846
|
+
# Optional. The view specifying which fields in the response should be populated.
|
|
845
847
|
# @param [String] fields
|
|
846
848
|
# Selector specifying which fields to include in a partial response.
|
|
847
849
|
# @param [String] quota_user
|
|
@@ -859,12 +861,13 @@ module Google
|
|
|
859
861
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
860
862
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
861
863
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
862
|
-
def get_project_location_app_conversation(name, source: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
864
|
+
def get_project_location_app_conversation(name, source: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
863
865
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
864
866
|
command.response_representation = Google::Apis::CesV1::Conversation::Representation
|
|
865
867
|
command.response_class = Google::Apis::CesV1::Conversation
|
|
866
868
|
command.params['name'] = name unless name.nil?
|
|
867
869
|
command.query['source'] = source unless source.nil?
|
|
870
|
+
command.query['view'] = view unless view.nil?
|
|
868
871
|
command.query['fields'] = fields unless fields.nil?
|
|
869
872
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
870
873
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-ces_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ces_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-ces_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-ces_v1/v0.13.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ces_v1
|
|
63
63
|
rdoc_options: []
|
|
64
64
|
require_paths:
|