google-apis-firebaseml_v2beta 0.12.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8084a85b7c3174e3e27e46ef1f98d9ce300e847d95da1eef177394cc4e03739
4
- data.tar.gz: 7526e21defb2f8468f63ae22a43385ed2e3a1cd654380cb5823f15cfd58338a9
3
+ metadata.gz: 9b2803faf3554d96e1c8db70f3b437ae1d7c25f9ed3c095b7bff10d6e067a9d4
4
+ data.tar.gz: dfc044a290358ade1f72764771d40a1a63b3df7db83d6a03f93e5a2d5dc70e71
5
5
  SHA512:
6
- metadata.gz: a54faf1f31515916c4c3b31e4bc47f4c3f1545605f6174a4122ee8c5bd49aaf0a523967c515538abb44541e7303bf371b63d8502192fcdf99b8c7295a0a5adea
7
- data.tar.gz: 238cbb156dca3214dda1b191d134669c68b37d40856f2e08f519ba724c0226ea73515105512255d8f9a3d2aa7fc13a926f3884dc43a21138a9fd354ebd28e4f2
6
+ metadata.gz: 5ee3343b163dfc6aefa649dbba8c57b24440dffc070e47665c65efe9e7b9cfd6047cbe0cf906f4e475f249903cd51fe556c52780e8cbe951c94554a6c773c0f9
7
+ data.tar.gz: b0a10fd47dce9f707c2aee5a52947b154daebb1bc24bde624edacfd7e98ae16a147567cd8c02407eb7ecd596c7395cc5c596cfda7b2ee6e7423b0632e7ca4ed2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firebaseml_v2beta
2
2
 
3
+ ### v0.13.0 (2025-01-05)
4
+
5
+ * Regenerated from discovery document revision 20241231
6
+
3
7
  ### v0.12.0 (2024-12-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20241211
@@ -1284,6 +1284,12 @@ module Google
1284
1284
  # @return [String]
1285
1285
  attr_accessor :text
1286
1286
 
1287
+ # Output only. Indicates if the part is thought from the model.
1288
+ # Corresponds to the JSON property `thought`
1289
+ # @return [Boolean]
1290
+ attr_accessor :thought
1291
+ alias_method :thought?, :thought
1292
+
1287
1293
  # Metadata describes the input video content.
1288
1294
  # Corresponds to the JSON property `videoMetadata`
1289
1295
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VideoMetadata]
@@ -1302,6 +1308,7 @@ module Google
1302
1308
  @function_response = args[:function_response] if args.key?(:function_response)
1303
1309
  @inline_data = args[:inline_data] if args.key?(:inline_data)
1304
1310
  @text = args[:text] if args.key?(:text)
1311
+ @thought = args[:thought] if args.key?(:thought)
1305
1312
  @video_metadata = args[:video_metadata] if args.key?(:video_metadata)
1306
1313
  end
1307
1314
  end
@@ -1514,6 +1521,34 @@ module Google
1514
1521
  end
1515
1522
  end
1516
1523
 
1524
+ # Retrieval config.
1525
+ class GoogleCloudAiplatformV1beta1RetrievalConfig
1526
+ include Google::Apis::Core::Hashable
1527
+
1528
+ # The language code of the user.
1529
+ # Corresponds to the JSON property `languageCode`
1530
+ # @return [String]
1531
+ attr_accessor :language_code
1532
+
1533
+ # An object that represents a latitude/longitude pair. This is expressed as a
1534
+ # pair of doubles to represent degrees latitude and degrees longitude. Unless
1535
+ # specified otherwise, this object must conform to the WGS84 standard. Values
1536
+ # must be within normalized ranges.
1537
+ # Corresponds to the JSON property `latLng`
1538
+ # @return [Google::Apis::FirebasemlV2beta::LatLng]
1539
+ attr_accessor :lat_lng
1540
+
1541
+ def initialize(**args)
1542
+ update!(**args)
1543
+ end
1544
+
1545
+ # Update properties of this object
1546
+ def update!(**args)
1547
+ @language_code = args[:language_code] if args.key?(:language_code)
1548
+ @lat_lng = args[:lat_lng] if args.key?(:lat_lng)
1549
+ end
1550
+ end
1551
+
1517
1552
  # Metadata related to retrieval in the grounding flow.
1518
1553
  class GoogleCloudAiplatformV1beta1RetrievalMetadata
1519
1554
  include Google::Apis::Core::Hashable
@@ -1944,6 +1979,11 @@ module Google
1944
1979
  # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionCallingConfig]
1945
1980
  attr_accessor :function_calling_config
1946
1981
 
1982
+ # Retrieval config.
1983
+ # Corresponds to the JSON property `retrievalConfig`
1984
+ # @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RetrievalConfig]
1985
+ attr_accessor :retrieval_config
1986
+
1947
1987
  def initialize(**args)
1948
1988
  update!(**args)
1949
1989
  end
@@ -1951,6 +1991,7 @@ module Google
1951
1991
  # Update properties of this object
1952
1992
  def update!(**args)
1953
1993
  @function_calling_config = args[:function_calling_config] if args.key?(:function_calling_config)
1994
+ @retrieval_config = args[:retrieval_config] if args.key?(:retrieval_config)
1954
1995
  end
1955
1996
  end
1956
1997
 
@@ -2106,6 +2147,34 @@ module Google
2106
2147
  end
2107
2148
  end
2108
2149
 
2150
+ # An object that represents a latitude/longitude pair. This is expressed as a
2151
+ # pair of doubles to represent degrees latitude and degrees longitude. Unless
2152
+ # specified otherwise, this object must conform to the WGS84 standard. Values
2153
+ # must be within normalized ranges.
2154
+ class LatLng
2155
+ include Google::Apis::Core::Hashable
2156
+
2157
+ # The latitude in degrees. It must be in the range [-90.0, +90.0].
2158
+ # Corresponds to the JSON property `latitude`
2159
+ # @return [Float]
2160
+ attr_accessor :latitude
2161
+
2162
+ # The longitude in degrees. It must be in the range [-180.0, +180.0].
2163
+ # Corresponds to the JSON property `longitude`
2164
+ # @return [Float]
2165
+ attr_accessor :longitude
2166
+
2167
+ def initialize(**args)
2168
+ update!(**args)
2169
+ end
2170
+
2171
+ # Update properties of this object
2172
+ def update!(**args)
2173
+ @latitude = args[:latitude] if args.key?(:latitude)
2174
+ @longitude = args[:longitude] if args.key?(:longitude)
2175
+ end
2176
+ end
2177
+
2109
2178
  # This is returned in the longrunning operations for create/update.
2110
2179
  class ModelOperationMetadata
2111
2180
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebasemlV2beta
18
18
  # Version of the google-apis-firebaseml_v2beta gem
19
- GEM_VERSION = "0.12.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.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241211"
25
+ REVISION = "20241231"
26
26
  end
27
27
  end
28
28
  end
@@ -274,6 +274,12 @@ module Google
274
274
  include Google::Apis::Core::JsonObjectSupport
275
275
  end
276
276
 
277
+ class GoogleCloudAiplatformV1beta1RetrievalConfig
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
277
283
  class GoogleCloudAiplatformV1beta1RetrievalMetadata
278
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
285
 
@@ -370,6 +376,12 @@ module Google
370
376
  include Google::Apis::Core::JsonObjectSupport
371
377
  end
372
378
 
379
+ class LatLng
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
373
385
  class ModelOperationMetadata
374
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
387
 
@@ -743,6 +755,7 @@ module Google
743
755
  property :inline_data, as: 'inlineData', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1Blob, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1Blob::Representation
744
756
 
745
757
  property :text, as: 'text'
758
+ property :thought, as: 'thought'
746
759
  property :video_metadata, as: 'videoMetadata', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VideoMetadata, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1VideoMetadata::Representation
747
760
 
748
761
  end
@@ -819,6 +832,15 @@ module Google
819
832
  end
820
833
  end
821
834
 
835
+ class GoogleCloudAiplatformV1beta1RetrievalConfig
836
+ # @private
837
+ class Representation < Google::Apis::Core::JsonRepresentation
838
+ property :language_code, as: 'languageCode'
839
+ property :lat_lng, as: 'latLng', class: Google::Apis::FirebasemlV2beta::LatLng, decorator: Google::Apis::FirebasemlV2beta::LatLng::Representation
840
+
841
+ end
842
+ end
843
+
822
844
  class GoogleCloudAiplatformV1beta1RetrievalMetadata
823
845
  # @private
824
846
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -931,6 +953,8 @@ module Google
931
953
  class Representation < Google::Apis::Core::JsonRepresentation
932
954
  property :function_calling_config, as: 'functionCallingConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionCallingConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1FunctionCallingConfig::Representation
933
955
 
956
+ property :retrieval_config, as: 'retrievalConfig', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RetrievalConfig, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1RetrievalConfig::Representation
957
+
934
958
  end
935
959
  end
936
960
 
@@ -984,6 +1008,14 @@ module Google
984
1008
  end
985
1009
  end
986
1010
 
1011
+ class LatLng
1012
+ # @private
1013
+ class Representation < Google::Apis::Core::JsonRepresentation
1014
+ property :latitude, as: 'latitude'
1015
+ property :longitude, as: 'longitude'
1016
+ end
1017
+ end
1018
+
987
1019
  class ModelOperationMetadata
988
1020
  # @private
989
1021
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaseml_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
11
+ date: 2025-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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-firebaseml_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.13.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseml_v2beta
63
63
  post_install_message:
64
64
  rdoc_options: []