telnyx 5.94.0 → 5.95.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: 99ee1431030d5e934cef1f55e43d65d5ec32a16385dc59b7b1935468a942f2b8
4
- data.tar.gz: 43ac6b2527321cd883735d0e566b7ca8c6bbe96eec82990c5eeb085021151fdb
3
+ metadata.gz: 983b777cfec44134445845b4820273fd5a66737d9468e13c4571240fa8c81c8a
4
+ data.tar.gz: 2f80d13386ce09cca4ae4af6dab1c407b55210b69274c2fdb93047a37347911b
5
5
  SHA512:
6
- metadata.gz: 790b845d4bb2eb03ed6142139cebff3595b0334439697a89911cad8f63b7f60ef8b1ba9dccce1c1f216c98d073b96e3e821cd188c4d48a2391dbf6e5820c00d9
7
- data.tar.gz: fb1c8230ec6bb4de8b91006449bcb401789a2b3e9116639e602fd4a9bd6ff2415f44563c1c2f6141cf3f2e51610ff5aa290b5dbcd49fc71fb6e3fd1f811c27ff
6
+ metadata.gz: 3fff9fb84a8a3a37a7058afec468394693ae00fdd1f7893436465fdd2b512d04af5c573e6392cf7a5f1973e4a4332028f11bc6573b8e79635edbe92aeb96865f
7
+ data.tar.gz: ae447016cb9c50548466304beaadd4bf4a53fdd4a4bffca1abd5cacd796c1ecb5759e0e746ff8ae2a93a829bde5b6446b94d30e14fd2305604adcb05ec7bd562
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.95.0 (2026-04-30)
4
+
5
+ Full Changelog: [v5.94.0...v5.95.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.94.0...v5.95.0)
6
+
7
+ ### Features
8
+
9
+ * AI-2183: Document dynamic variable support for transcription keyterm ([823e5bd](https://github.com/team-telnyx/telnyx-ruby/commit/823e5bdaa3679a150e76631e79841514215a5847))
10
+
3
11
  ## 5.94.0 (2026-04-30)
4
12
 
5
13
  Full Changelog: [v5.93.0...v5.94.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.93.0...v5.94.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.94.0"
27
+ gem "telnyx", "~> 5.95.0"
28
28
  ```
29
29
 
30
30
  <!-- x-release-please-end -->
@@ -37,7 +37,11 @@ module Telnyx
37
37
  # @!attribute keyterm
38
38
  # Available only for deepgram/nova-3 and deepgram/flux. A comma-separated list of
39
39
  # key terms to boost for recognition during transcription. Helps improve accuracy
40
- # for domain-specific terminology, proper nouns, or uncommon words.
40
+ # for domain-specific terminology, proper nouns, or uncommon words. This field may
41
+ # be templated with
42
+ # [dynamic variables](https://developers.telnyx.com/docs/inference/ai-assistants/dynamic-variables)
43
+ # using mustache syntax (e.g. `Telnyx,{{customer_name}},VoIP`). Variables are
44
+ # resolved at call time before the value is sent to the speech-to-text engine.
41
45
  #
42
46
  # @return [String, nil]
43
47
  optional :keyterm, String
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Telnyx
4
- VERSION = "5.94.0"
4
+ VERSION = "5.95.0"
5
5
  end
@@ -48,7 +48,11 @@ module Telnyx
48
48
 
49
49
  # Available only for deepgram/nova-3 and deepgram/flux. A comma-separated list of
50
50
  # key terms to boost for recognition during transcription. Helps improve accuracy
51
- # for domain-specific terminology, proper nouns, or uncommon words.
51
+ # for domain-specific terminology, proper nouns, or uncommon words. This field may
52
+ # be templated with
53
+ # [dynamic variables](https://developers.telnyx.com/docs/inference/ai-assistants/dynamic-variables)
54
+ # using mustache syntax (e.g. `Telnyx,{{customer_name}},VoIP`). Variables are
55
+ # resolved at call time before the value is sent to the speech-to-text engine.
52
56
  sig { returns(T.nilable(String)) }
53
57
  attr_reader :keyterm
54
58
 
@@ -114,7 +118,11 @@ module Telnyx
114
118
  eot_timeout_ms: nil,
115
119
  # Available only for deepgram/nova-3 and deepgram/flux. A comma-separated list of
116
120
  # key terms to boost for recognition during transcription. Helps improve accuracy
117
- # for domain-specific terminology, proper nouns, or uncommon words.
121
+ # for domain-specific terminology, proper nouns, or uncommon words. This field may
122
+ # be templated with
123
+ # [dynamic variables](https://developers.telnyx.com/docs/inference/ai-assistants/dynamic-variables)
124
+ # using mustache syntax (e.g. `Telnyx,{{customer_name}},VoIP`). Variables are
125
+ # resolved at call time before the value is sent to the speech-to-text engine.
118
126
  keyterm: nil,
119
127
  # Available only for assemblyai/universal-streaming. Maximum duration of silence
120
128
  # in milliseconds before forcing an end of turn.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: telnyx
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.94.0
4
+ version: 5.95.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Telnyx