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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2aef70dd3897a68a66b9ea98f0698ea78f64416ead2d4c0a4f5e0699b7763fb5
4
- data.tar.gz: 45cd93d71fa1b1ae7864ed68ae5711c266a175d9e1450a1ea3bb7c7e6bf9e004
3
+ metadata.gz: e82699addb7ad1312968464e3dbb2556de69675fd2c89c114b642c38d07a91d1
4
+ data.tar.gz: 73450eb4c8b9e81ad1518e5eab72f667a76d2027cf09ad0060afc92565f218e3
5
5
  SHA512:
6
- metadata.gz: f085a9180e794a88da8d181f7f3bdd1bd4147282f4fa4f393ad2484564e7966a701e56fce33802d02ea8b2a7c00eaa40a58e9344ed2cc3a436b49102d26deed6
7
- data.tar.gz: 7da9218b988d59edaab4a8400febe12313522b77bb4c2b9c589cf96ff1a72377ace6d252f9392538bb0e77cd256a3cd5c2c9ab9442bc1333af2d58b0f5d80642
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
@@ -24,7 +24,7 @@ To use this gem, install via Bundler by adding the following to your application
24
24
  <!-- x-release-please-start-version -->
25
25
 
26
26
  ```ruby
27
- gem "telnyx", "~> 5.78.0"
27
+ gem "telnyx", "~> 5.79.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -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]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.78.0"
4
+ VERSION = "5.79.0"
5
5
  end
@@ -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.78.0
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-17 00:00:00.000000000 Z
11
+ date: 2026-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi