google-apis-firebaseml_v2beta 0.43.0 → 0.44.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: bbe11df5fb47c41545fa9c30950c6a4cd9f781811b9da0a3a8758ee1b4f77b25
|
|
4
|
+
data.tar.gz: fa456583a1416c4e4319d85087c15258d090c51d01990b1d7b1f8ccedee97c66
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b20a1a4cd90a49673f8b9d2d8cc2f66c2c3717c2ee8266052313b2371c5e907ed16db80a30f13081f3d849f5619155b13c323864d5a643d34c51c9b9b3a3f34
|
|
7
|
+
data.tar.gz: 33fd665d74e77b949065a61dafd2bf88383b6929122bef4675bacb52c72caf87bfa5863ff2072eb73adb1221b8700dc16001bd6f533302bafbfd03a82bad1652
|
data/CHANGELOG.md
CHANGED
|
@@ -222,6 +222,16 @@ module Google
|
|
|
222
222
|
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageHints]
|
|
223
223
|
attr_accessor :language_hints
|
|
224
224
|
|
|
225
|
+
# Optional. Configures transcription mode. Supported values: `VERBATIM`, `SMART`.
|
|
226
|
+
# If unspecified, defaults to `VERBATIM` transcription. In `SMART` mode, the
|
|
227
|
+
# model performs disfluency removal (eliminating filler words, repetitions, and
|
|
228
|
+
# false starts), light grammatical cleanup, automatic formatting (paragraphs,
|
|
229
|
+
# bullet points, numbered lists), and minor user edits (inline self-corrections).
|
|
230
|
+
# Timestamps and diarization are incompatible with mode `SMART`.
|
|
231
|
+
# Corresponds to the JSON property `mode`
|
|
232
|
+
# @return [String]
|
|
233
|
+
attr_accessor :mode
|
|
234
|
+
|
|
225
235
|
# Optional. Configures word-level timestamp generation.
|
|
226
236
|
# Corresponds to the JSON property `wordTimestamp`
|
|
227
237
|
# @return [Boolean]
|
|
@@ -240,6 +250,7 @@ module Google
|
|
|
240
250
|
@language_auto = args[:language_auto] if args.key?(:language_auto)
|
|
241
251
|
@language_codes = args[:language_codes] if args.key?(:language_codes)
|
|
242
252
|
@language_hints = args[:language_hints] if args.key?(:language_hints)
|
|
253
|
+
@mode = args[:mode] if args.key?(:mode)
|
|
243
254
|
@word_timestamp = args[:word_timestamp] if args.key?(:word_timestamp)
|
|
244
255
|
end
|
|
245
256
|
end
|
|
@@ -2962,6 +2973,13 @@ module Google
|
|
|
2962
2973
|
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1Blob]
|
|
2963
2974
|
attr_accessor :inline_data
|
|
2964
2975
|
|
|
2976
|
+
# Optional. How the model processes this part's media for understanding. Only
|
|
2977
|
+
# meaningful for video parts (`inline_data` or `file_data` with video mime). Non-
|
|
2978
|
+
# video parts ignore this field.
|
|
2979
|
+
# Corresponds to the JSON property `mediaProcessing`
|
|
2980
|
+
# @return [String]
|
|
2981
|
+
attr_accessor :media_processing
|
|
2982
|
+
|
|
2965
2983
|
# per part media resolution. Media resolution for the input media.
|
|
2966
2984
|
# Corresponds to the JSON property `mediaResolution`
|
|
2967
2985
|
# @return [Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1PartMediaResolution]
|
|
@@ -3008,6 +3026,7 @@ module Google
|
|
|
3008
3026
|
@function_call = args[:function_call] if args.key?(:function_call)
|
|
3009
3027
|
@function_response = args[:function_response] if args.key?(:function_response)
|
|
3010
3028
|
@inline_data = args[:inline_data] if args.key?(:inline_data)
|
|
3029
|
+
@media_processing = args[:media_processing] if args.key?(:media_processing)
|
|
3011
3030
|
@media_resolution = args[:media_resolution] if args.key?(:media_resolution)
|
|
3012
3031
|
@text = args[:text] if args.key?(:text)
|
|
3013
3032
|
@thought = args[:thought] if args.key?(:thought)
|
|
@@ -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.44.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 = "20260816"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -792,6 +792,7 @@ module Google
|
|
|
792
792
|
collection :language_codes, as: 'languageCodes'
|
|
793
793
|
property :language_hints, as: 'languageHints', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageHints, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1AudioTranscriptionConfigLanguageHints::Representation
|
|
794
794
|
|
|
795
|
+
property :mode, as: 'mode'
|
|
795
796
|
property :word_timestamp, as: 'wordTimestamp'
|
|
796
797
|
end
|
|
797
798
|
end
|
|
@@ -1520,6 +1521,7 @@ module Google
|
|
|
1520
1521
|
|
|
1521
1522
|
property :inline_data, as: 'inlineData', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1Blob, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1Blob::Representation
|
|
1522
1523
|
|
|
1524
|
+
property :media_processing, as: 'mediaProcessing'
|
|
1523
1525
|
property :media_resolution, as: 'mediaResolution', class: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1PartMediaResolution, decorator: Google::Apis::FirebasemlV2beta::GoogleCloudAiplatformV1beta1PartMediaResolution::Representation
|
|
1524
1526
|
|
|
1525
1527
|
property :text, as: 'text'
|
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.44.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.44.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:
|