google-apis-aiplatform_v1 0.55.0 → 0.56.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: 4bcf24d4010f97cb7b928af26c22535dc303d8958ca4163743ef5e2374684d35
|
4
|
+
data.tar.gz: 39b35db6200d3055f33f0d1907bc44a1211882095a7229e27ff696e5224bbfc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b786d153cc14345949c9122b8051aa391527da461ca10e76ec5498038ea45372460a271b99d47bb7c179bba0edd465575ce4f89e9c74fcef43a7a58b6baa0aae
|
7
|
+
data.tar.gz: 960262acd924dbe09ad661eb2e7c877238b78452095f0ea1f1f4619bf16988313187619e0780ae5c91b4353a68ab9eda6cb1aff915060afb8054c2a2b7f0cf30
|
data/CHANGELOG.md
CHANGED
@@ -21098,12 +21098,19 @@ module Google
|
|
21098
21098
|
# @return [String]
|
21099
21099
|
attr_accessor :text
|
21100
21100
|
|
21101
|
-
#
|
21101
|
+
# Optional. Indicates if the part is thought from the model.
|
21102
21102
|
# Corresponds to the JSON property `thought`
|
21103
21103
|
# @return [Boolean]
|
21104
21104
|
attr_accessor :thought
|
21105
21105
|
alias_method :thought?, :thought
|
21106
21106
|
|
21107
|
+
# Optional. An opaque signature for the thought so it can be reused in
|
21108
|
+
# subsequent requests.
|
21109
|
+
# Corresponds to the JSON property `thoughtSignature`
|
21110
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
21111
|
+
# @return [String]
|
21112
|
+
attr_accessor :thought_signature
|
21113
|
+
|
21107
21114
|
# Metadata describes the input video content.
|
21108
21115
|
# Corresponds to the JSON property `videoMetadata`
|
21109
21116
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VideoMetadata]
|
@@ -21123,6 +21130,7 @@ module Google
|
|
21123
21130
|
@inline_data = args[:inline_data] if args.key?(:inline_data)
|
21124
21131
|
@text = args[:text] if args.key?(:text)
|
21125
21132
|
@thought = args[:thought] if args.key?(:thought)
|
21133
|
+
@thought_signature = args[:thought_signature] if args.key?(:thought_signature)
|
21126
21134
|
@video_metadata = args[:video_metadata] if args.key?(:video_metadata)
|
21127
21135
|
end
|
21128
21136
|
end
|
@@ -37095,6 +37103,11 @@ module Google
|
|
37095
37103
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution]
|
37096
37104
|
attr_accessor :code_execution
|
37097
37105
|
|
37106
|
+
# Tool to support computer use.
|
37107
|
+
# Corresponds to the JSON property `computerUse`
|
37108
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse]
|
37109
|
+
attr_accessor :computer_use
|
37110
|
+
|
37098
37111
|
# Tool to search public web data, powered by Vertex AI Search and Sec4
|
37099
37112
|
# compliance.
|
37100
37113
|
# Corresponds to the JSON property `enterpriseWebSearch`
|
@@ -37127,6 +37140,11 @@ module Google
|
|
37127
37140
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval]
|
37128
37141
|
attr_accessor :retrieval
|
37129
37142
|
|
37143
|
+
# Tool to support URL context.
|
37144
|
+
# Corresponds to the JSON property `urlContext`
|
37145
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContext]
|
37146
|
+
attr_accessor :url_context
|
37147
|
+
|
37130
37148
|
def initialize(**args)
|
37131
37149
|
update!(**args)
|
37132
37150
|
end
|
@@ -37134,11 +37152,13 @@ module Google
|
|
37134
37152
|
# Update properties of this object
|
37135
37153
|
def update!(**args)
|
37136
37154
|
@code_execution = args[:code_execution] if args.key?(:code_execution)
|
37155
|
+
@computer_use = args[:computer_use] if args.key?(:computer_use)
|
37137
37156
|
@enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
|
37138
37157
|
@function_declarations = args[:function_declarations] if args.key?(:function_declarations)
|
37139
37158
|
@google_search = args[:google_search] if args.key?(:google_search)
|
37140
37159
|
@google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
|
37141
37160
|
@retrieval = args[:retrieval] if args.key?(:retrieval)
|
37161
|
+
@url_context = args[:url_context] if args.key?(:url_context)
|
37142
37162
|
end
|
37143
37163
|
end
|
37144
37164
|
|
@@ -37283,6 +37303,25 @@ module Google
|
|
37283
37303
|
end
|
37284
37304
|
end
|
37285
37305
|
|
37306
|
+
# Tool to support computer use.
|
37307
|
+
class GoogleCloudAiplatformV1ToolComputerUse
|
37308
|
+
include Google::Apis::Core::Hashable
|
37309
|
+
|
37310
|
+
# Required. The environment being operated.
|
37311
|
+
# Corresponds to the JSON property `environment`
|
37312
|
+
# @return [String]
|
37313
|
+
attr_accessor :environment
|
37314
|
+
|
37315
|
+
def initialize(**args)
|
37316
|
+
update!(**args)
|
37317
|
+
end
|
37318
|
+
|
37319
|
+
# Update properties of this object
|
37320
|
+
def update!(**args)
|
37321
|
+
@environment = args[:environment] if args.key?(:environment)
|
37322
|
+
end
|
37323
|
+
end
|
37324
|
+
|
37286
37325
|
# Tool config. This config is shared for all tools provided in the request.
|
37287
37326
|
class GoogleCloudAiplatformV1ToolConfig
|
37288
37327
|
include Google::Apis::Core::Hashable
|
@@ -39567,6 +39606,19 @@ module Google
|
|
39567
39606
|
end
|
39568
39607
|
end
|
39569
39608
|
|
39609
|
+
# Tool to support URL context.
|
39610
|
+
class GoogleCloudAiplatformV1UrlContext
|
39611
|
+
include Google::Apis::Core::Hashable
|
39612
|
+
|
39613
|
+
def initialize(**args)
|
39614
|
+
update!(**args)
|
39615
|
+
end
|
39616
|
+
|
39617
|
+
# Update properties of this object
|
39618
|
+
def update!(**args)
|
39619
|
+
end
|
39620
|
+
end
|
39621
|
+
|
39570
39622
|
# References an API call. It contains more information about long running
|
39571
39623
|
# operation and Jobs that are triggered by the API call.
|
39572
39624
|
class GoogleCloudAiplatformV1UserActionReference
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AiplatformV1
|
18
18
|
# Version of the google-apis-aiplatform_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.56.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250602"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -6142,6 +6142,12 @@ module Google
|
|
6142
6142
|
include Google::Apis::Core::JsonObjectSupport
|
6143
6143
|
end
|
6144
6144
|
|
6145
|
+
class GoogleCloudAiplatformV1ToolComputerUse
|
6146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6147
|
+
|
6148
|
+
include Google::Apis::Core::JsonObjectSupport
|
6149
|
+
end
|
6150
|
+
|
6145
6151
|
class GoogleCloudAiplatformV1ToolConfig
|
6146
6152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6147
6153
|
|
@@ -6682,6 +6688,12 @@ module Google
|
|
6682
6688
|
include Google::Apis::Core::JsonObjectSupport
|
6683
6689
|
end
|
6684
6690
|
|
6691
|
+
class GoogleCloudAiplatformV1UrlContext
|
6692
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6693
|
+
|
6694
|
+
include Google::Apis::Core::JsonObjectSupport
|
6695
|
+
end
|
6696
|
+
|
6685
6697
|
class GoogleCloudAiplatformV1UserActionReference
|
6686
6698
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6687
6699
|
|
@@ -12826,6 +12838,7 @@ module Google
|
|
12826
12838
|
|
12827
12839
|
property :text, as: 'text'
|
12828
12840
|
property :thought, as: 'thought'
|
12841
|
+
property :thought_signature, :base64 => true, as: 'thoughtSignature'
|
12829
12842
|
property :video_metadata, as: 'videoMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VideoMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VideoMetadata::Representation
|
12830
12843
|
|
12831
12844
|
end
|
@@ -17301,6 +17314,8 @@ module Google
|
|
17301
17314
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17302
17315
|
property :code_execution, as: 'codeExecution', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution::Representation
|
17303
17316
|
|
17317
|
+
property :computer_use, as: 'computerUse', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse::Representation
|
17318
|
+
|
17304
17319
|
property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch::Representation
|
17305
17320
|
|
17306
17321
|
collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration::Representation
|
@@ -17311,6 +17326,8 @@ module Google
|
|
17311
17326
|
|
17312
17327
|
property :retrieval, as: 'retrieval', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval::Representation
|
17313
17328
|
|
17329
|
+
property :url_context, as: 'urlContext', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContext, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContext::Representation
|
17330
|
+
|
17314
17331
|
end
|
17315
17332
|
end
|
17316
17333
|
|
@@ -17367,6 +17384,13 @@ module Google
|
|
17367
17384
|
end
|
17368
17385
|
end
|
17369
17386
|
|
17387
|
+
class GoogleCloudAiplatformV1ToolComputerUse
|
17388
|
+
# @private
|
17389
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
17390
|
+
property :environment, as: 'environment'
|
17391
|
+
end
|
17392
|
+
end
|
17393
|
+
|
17370
17394
|
class GoogleCloudAiplatformV1ToolConfig
|
17371
17395
|
# @private
|
17372
17396
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -18152,6 +18176,12 @@ module Google
|
|
18152
18176
|
end
|
18153
18177
|
end
|
18154
18178
|
|
18179
|
+
class GoogleCloudAiplatformV1UrlContext
|
18180
|
+
# @private
|
18181
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18182
|
+
end
|
18183
|
+
end
|
18184
|
+
|
18155
18185
|
class GoogleCloudAiplatformV1UserActionReference
|
18156
18186
|
# @private
|
18157
18187
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-aiplatform_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.56.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.56.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|