google-cloud-speech 0.40.0 → 0.40.1
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 +4 -4
- data/lib/google/cloud/speech/v1/speech_client_config.json +4 -4
- data/lib/google/cloud/speech/v1/stream.rb +2 -1
- data/lib/google/cloud/speech/v1p1beta1/speech_client_config.json +3 -3
- data/lib/google/cloud/speech/v1p1beta1/stream.rb +2 -1
- data/lib/google/cloud/speech/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 381904a7c9ca2b7da6a0047bfd6e3157722a5b816bb5d33ac2bf2624da6bc326
|
|
4
|
+
data.tar.gz: 7a86345cebb57d3ef70b205d6785393ad3094bd25fa5f6ffb164d76fb264afa5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f25925bd0442fcdd921d0065c7c20174ac544634d0818533ed188af106fe3381110b64be29749e90a518e969089b0dd195fef0069e5f2c3586e5c48e3f058814
|
|
7
|
+
data.tar.gz: deb3dcb94e28227e4d49fcf0f5fbd746c1813af07a9628f965fb57fd36993a287bf28837c3c81e03e87e57564dbea200933012585159bc3c0617b2b6f1486fd0
|
|
@@ -13,16 +13,16 @@
|
|
|
13
13
|
"initial_retry_delay_millis": 100,
|
|
14
14
|
"retry_delay_multiplier": 1.3,
|
|
15
15
|
"max_retry_delay_millis": 60000,
|
|
16
|
-
"initial_rpc_timeout_millis":
|
|
16
|
+
"initial_rpc_timeout_millis": 1000000,
|
|
17
17
|
"rpc_timeout_multiplier": 1.0,
|
|
18
|
-
"max_rpc_timeout_millis":
|
|
19
|
-
"total_timeout_millis":
|
|
18
|
+
"max_rpc_timeout_millis": 1000000,
|
|
19
|
+
"total_timeout_millis": 5000000
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"methods": {
|
|
23
23
|
"Recognize": {
|
|
24
24
|
"timeout_millis": 60000,
|
|
25
|
-
"retry_codes_name": "
|
|
25
|
+
"retry_codes_name": "idempotent",
|
|
26
26
|
"retry_params_name": "default"
|
|
27
27
|
},
|
|
28
28
|
"LongRunningRecognize": {
|
|
@@ -60,13 +60,14 @@ module Google
|
|
|
60
60
|
# This must always be private, since it may change as the implementation
|
|
61
61
|
# changes over time.
|
|
62
62
|
def initialize streaming_config, streaming_call
|
|
63
|
+
super() # to init MonitorMixin
|
|
64
|
+
|
|
63
65
|
@streaming_call = streaming_call
|
|
64
66
|
@streaming_recognize_request = {
|
|
65
67
|
streaming_config: streaming_config
|
|
66
68
|
}
|
|
67
69
|
@results = []
|
|
68
70
|
@callbacks = Hash.new { |h, k| h[k] = [] }
|
|
69
|
-
super() # to init MonitorMixin
|
|
70
71
|
end
|
|
71
72
|
|
|
72
73
|
##
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"initial_retry_delay_millis": 100,
|
|
14
14
|
"retry_delay_multiplier": 1.3,
|
|
15
15
|
"max_retry_delay_millis": 60000,
|
|
16
|
-
"initial_rpc_timeout_millis":
|
|
16
|
+
"initial_rpc_timeout_millis": 1000000,
|
|
17
17
|
"rpc_timeout_multiplier": 1.0,
|
|
18
|
-
"max_rpc_timeout_millis":
|
|
19
|
-
"total_timeout_millis":
|
|
18
|
+
"max_rpc_timeout_millis": 1000000,
|
|
19
|
+
"total_timeout_millis": 5000000
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
"methods": {
|
|
@@ -60,13 +60,14 @@ module Google
|
|
|
60
60
|
# This must always be private, since it may change as the implementation
|
|
61
61
|
# changes over time.
|
|
62
62
|
def initialize streaming_config, streaming_call
|
|
63
|
+
super() # to init MonitorMixin
|
|
64
|
+
|
|
63
65
|
@streaming_call = streaming_call
|
|
64
66
|
@streaming_recognize_request = {
|
|
65
67
|
streaming_config: streaming_config
|
|
66
68
|
}
|
|
67
69
|
@results = []
|
|
68
70
|
@callbacks = Hash.new { |h, k| h[k] = [] }
|
|
69
|
-
super() # to init MonitorMixin
|
|
70
71
|
end
|
|
71
72
|
|
|
72
73
|
##
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-speech
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.40.
|
|
4
|
+
version: 0.40.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-gax
|