google-apis-firebaseml_v2beta 0.22.0 → 0.23.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: 8aa476c8d8e71ea4321d8210ae0d9ff76b53bb8249c99e8e71f6d7070e8f1f18
|
4
|
+
data.tar.gz: bcfc7f6e3fe8c35e80f738c6bf4b50bfafd79f1dee4c2e925f6413b0e8635948
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 270b94d680d41942e636e937cb6cc6e2056fb19c007ab373b914a68adbaad7fe2fddcfe3a1eccf722d10f72980f3e99470f3e63e3c85622ae3359172230563ed
|
7
|
+
data.tar.gz: 7d21837280d97ef7fccfebcbfe1f0b10c4a22755604231eccc84aad3d2dc95b4021a24904f1bc45559df06c95e34bc72dcee428909b5388041043d6f8a84eced
|
data/CHANGELOG.md
CHANGED
@@ -326,7 +326,8 @@ module Google
|
|
326
326
|
|
327
327
|
# Optional. Display name of the blob. Used to provide a label or filename to
|
328
328
|
# distinguish blobs. This field is only returned in PromptMessage for prompt
|
329
|
-
# management. It is
|
329
|
+
# management. It is currently used in the Gemini GenerateContent calls only when
|
330
|
+
# server side tools (code_execution, google_search, and url_context) are enabled.
|
330
331
|
# Corresponds to the JSON property `displayName`
|
331
332
|
# @return [String]
|
332
333
|
attr_accessor :display_name
|
@@ -822,8 +823,9 @@ module Google
|
|
822
823
|
|
823
824
|
# Optional. Display name of the file data. Used to provide a label or filename
|
824
825
|
# to distinguish file datas. This field is only returned in PromptMessage for
|
825
|
-
# prompt management. It is
|
826
|
-
#
|
826
|
+
# prompt management. It is currently used in the Gemini GenerateContent calls
|
827
|
+
# only when server side tools (code_execution, google_search, and url_context)
|
828
|
+
# are enabled.
|
827
829
|
# Corresponds to the JSON property `displayName`
|
828
830
|
# @return [String]
|
829
831
|
attr_accessor :display_name
|
@@ -2270,6 +2272,13 @@ module Google
|
|
2270
2272
|
# @return [String]
|
2271
2273
|
attr_accessor :category
|
2272
2274
|
|
2275
|
+
# Output only. The overwritten threshold for the safety category of Gemini 2.0
|
2276
|
+
# image out. If minors are detected in the output image, the threshold of each
|
2277
|
+
# safety category will be overwritten if user sets a lower threshold.
|
2278
|
+
# Corresponds to the JSON property `overwrittenThreshold`
|
2279
|
+
# @return [String]
|
2280
|
+
attr_accessor :overwritten_threshold
|
2281
|
+
|
2273
2282
|
# Output only. Harm probability levels in the content.
|
2274
2283
|
# Corresponds to the JSON property `probability`
|
2275
2284
|
# @return [String]
|
@@ -2298,6 +2307,7 @@ module Google
|
|
2298
2307
|
def update!(**args)
|
2299
2308
|
@blocked = args[:blocked] if args.key?(:blocked)
|
2300
2309
|
@category = args[:category] if args.key?(:category)
|
2310
|
+
@overwritten_threshold = args[:overwritten_threshold] if args.key?(:overwritten_threshold)
|
2301
2311
|
@probability = args[:probability] if args.key?(:probability)
|
2302
2312
|
@probability_score = args[:probability_score] if args.key?(:probability_score)
|
2303
2313
|
@severity = args[:severity] if args.key?(:severity)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.23.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 = "20250610"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1170,6 +1170,7 @@ module Google
|
|
1170
1170
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1171
1171
|
property :blocked, as: 'blocked'
|
1172
1172
|
property :category, as: 'category'
|
1173
|
+
property :overwritten_threshold, as: 'overwrittenThreshold'
|
1173
1174
|
property :probability, as: 'probability'
|
1174
1175
|
property :probability_score, as: 'probabilityScore'
|
1175
1176
|
property :severity, as: 'severity'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firebaseml_v2beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.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-firebaseml_v2beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseml_v2beta/v0.23.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseml_v2beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|