telnyx 5.78.0 → 5.79.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/telnyx/models/ai/transcription_settings_config.rb +11 -1
- data/lib/telnyx/version.rb +1 -1
- data/rbi/telnyx/models/ai/transcription_settings_config.rbi +15 -0
- data/sig/telnyx/models/ai/transcription_settings_config.rbs +7 -0
- 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: e82699addb7ad1312968464e3dbb2556de69675fd2c89c114b642c38d07a91d1
|
|
4
|
+
data.tar.gz: 73450eb4c8b9e81ad1518e5eab72f667a76d2027cf09ad0060afc92565f218e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f15cddc766ed72893460a4fdc50fcb302f2be6d79ca138619e4f867f1cd467c18cbf0a7935551e10b21c66aaf87f2753060b0de1cb3ad574452a8494d02a975
|
|
7
|
+
data.tar.gz: 5c67947e89af13e215974f7251ceca7e72cf04a14a7c71a794fbbf0cabf762a93100ce170db18e0bb62ed3015a4dfaa3f94442c3f28a740bd1512c1dc58f7a10
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.79.0 (2026-04-20)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.78.0...v5.79.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.78.0...v5.79.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Add keyterm field to TranscriptionSettingsConfig ([6fc5280](https://github.com/team-telnyx/telnyx-ruby/commit/6fc528067e46ac46e06d8bddf756c9c5f621e3fb))
|
|
10
|
+
|
|
3
11
|
## 5.78.0 (2026-04-17)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v5.77.0...v5.78.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.77.0...v5.78.0)
|
data/README.md
CHANGED
|
@@ -26,6 +26,14 @@ module Telnyx
|
|
|
26
26
|
# @return [Integer, nil]
|
|
27
27
|
optional :eot_timeout_ms, Integer
|
|
28
28
|
|
|
29
|
+
# @!attribute keyterm
|
|
30
|
+
# Available only for deepgram/nova-3 and deepgram/flux. A comma-separated list of
|
|
31
|
+
# key terms to boost for recognition during transcription. Helps improve accuracy
|
|
32
|
+
# for domain-specific terminology, proper nouns, or uncommon words.
|
|
33
|
+
#
|
|
34
|
+
# @return [String, nil]
|
|
35
|
+
optional :keyterm, String
|
|
36
|
+
|
|
29
37
|
# @!attribute numerals
|
|
30
38
|
#
|
|
31
39
|
# @return [Boolean, nil]
|
|
@@ -36,7 +44,7 @@ module Telnyx
|
|
|
36
44
|
# @return [Boolean, nil]
|
|
37
45
|
optional :smart_format, Telnyx::Internal::Type::Boolean
|
|
38
46
|
|
|
39
|
-
# @!method initialize(eager_eot_threshold: nil, eot_threshold: nil, eot_timeout_ms: nil, numerals: nil, smart_format: nil)
|
|
47
|
+
# @!method initialize(eager_eot_threshold: nil, eot_threshold: nil, eot_timeout_ms: nil, keyterm: nil, numerals: nil, smart_format: nil)
|
|
40
48
|
# Some parameter documentations has been truncated, see
|
|
41
49
|
# {Telnyx::Models::AI::TranscriptionSettingsConfig} for more details.
|
|
42
50
|
#
|
|
@@ -46,6 +54,8 @@ module Telnyx
|
|
|
46
54
|
#
|
|
47
55
|
# @param eot_timeout_ms [Integer] Available only for deepgram/flux. Maximum milliseconds of silence before forcing
|
|
48
56
|
#
|
|
57
|
+
# @param keyterm [String] Available only for deepgram/nova-3 and deepgram/flux. A comma-separated list of
|
|
58
|
+
#
|
|
49
59
|
# @param numerals [Boolean]
|
|
50
60
|
#
|
|
51
61
|
# @param smart_format [Boolean]
|
data/lib/telnyx/version.rb
CHANGED
|
@@ -37,6 +37,15 @@ module Telnyx
|
|
|
37
37
|
sig { params(eot_timeout_ms: Integer).void }
|
|
38
38
|
attr_writer :eot_timeout_ms
|
|
39
39
|
|
|
40
|
+
# Available only for deepgram/nova-3 and deepgram/flux. A comma-separated list of
|
|
41
|
+
# key terms to boost for recognition during transcription. Helps improve accuracy
|
|
42
|
+
# for domain-specific terminology, proper nouns, or uncommon words.
|
|
43
|
+
sig { returns(T.nilable(String)) }
|
|
44
|
+
attr_reader :keyterm
|
|
45
|
+
|
|
46
|
+
sig { params(keyterm: String).void }
|
|
47
|
+
attr_writer :keyterm
|
|
48
|
+
|
|
40
49
|
sig { returns(T.nilable(T::Boolean)) }
|
|
41
50
|
attr_reader :numerals
|
|
42
51
|
|
|
@@ -54,6 +63,7 @@ module Telnyx
|
|
|
54
63
|
eager_eot_threshold: Float,
|
|
55
64
|
eot_threshold: Float,
|
|
56
65
|
eot_timeout_ms: Integer,
|
|
66
|
+
keyterm: String,
|
|
57
67
|
numerals: T::Boolean,
|
|
58
68
|
smart_format: T::Boolean
|
|
59
69
|
).returns(T.attached_class)
|
|
@@ -69,6 +79,10 @@ module Telnyx
|
|
|
69
79
|
# Available only for deepgram/flux. Maximum milliseconds of silence before forcing
|
|
70
80
|
# an end of turn, regardless of confidence.
|
|
71
81
|
eot_timeout_ms: nil,
|
|
82
|
+
# Available only for deepgram/nova-3 and deepgram/flux. A comma-separated list of
|
|
83
|
+
# key terms to boost for recognition during transcription. Helps improve accuracy
|
|
84
|
+
# for domain-specific terminology, proper nouns, or uncommon words.
|
|
85
|
+
keyterm: nil,
|
|
72
86
|
numerals: nil,
|
|
73
87
|
smart_format: nil
|
|
74
88
|
)
|
|
@@ -80,6 +94,7 @@ module Telnyx
|
|
|
80
94
|
eager_eot_threshold: Float,
|
|
81
95
|
eot_threshold: Float,
|
|
82
96
|
eot_timeout_ms: Integer,
|
|
97
|
+
keyterm: String,
|
|
83
98
|
numerals: T::Boolean,
|
|
84
99
|
smart_format: T::Boolean
|
|
85
100
|
}
|
|
@@ -6,6 +6,7 @@ module Telnyx
|
|
|
6
6
|
eager_eot_threshold: Float,
|
|
7
7
|
eot_threshold: Float,
|
|
8
8
|
eot_timeout_ms: Integer,
|
|
9
|
+
keyterm: String,
|
|
9
10
|
numerals: bool,
|
|
10
11
|
smart_format: bool
|
|
11
12
|
}
|
|
@@ -23,6 +24,10 @@ module Telnyx
|
|
|
23
24
|
|
|
24
25
|
def eot_timeout_ms=: (Integer) -> Integer
|
|
25
26
|
|
|
27
|
+
attr_reader keyterm: String?
|
|
28
|
+
|
|
29
|
+
def keyterm=: (String) -> String
|
|
30
|
+
|
|
26
31
|
attr_reader numerals: bool?
|
|
27
32
|
|
|
28
33
|
def numerals=: (bool) -> bool
|
|
@@ -35,6 +40,7 @@ module Telnyx
|
|
|
35
40
|
?eager_eot_threshold: Float,
|
|
36
41
|
?eot_threshold: Float,
|
|
37
42
|
?eot_timeout_ms: Integer,
|
|
43
|
+
?keyterm: String,
|
|
38
44
|
?numerals: bool,
|
|
39
45
|
?smart_format: bool
|
|
40
46
|
) -> void
|
|
@@ -43,6 +49,7 @@ module Telnyx
|
|
|
43
49
|
eager_eot_threshold: Float,
|
|
44
50
|
eot_threshold: Float,
|
|
45
51
|
eot_timeout_ms: Integer,
|
|
52
|
+
keyterm: String,
|
|
46
53
|
numerals: bool,
|
|
47
54
|
smart_format: bool
|
|
48
55
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: telnyx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.
|
|
4
|
+
version: 5.79.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Telnyx
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|