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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/telnyx/models/ai/transcription_settings_config.rb +5 -1
- data/lib/telnyx/version.rb +1 -1
- data/rbi/telnyx/models/ai/transcription_settings_config.rbi +10 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 983b777cfec44134445845b4820273fd5a66737d9468e13c4571240fa8c81c8a
|
|
4
|
+
data.tar.gz: 2f80d13386ce09cca4ae4af6dab1c407b55210b69274c2fdb93047a37347911b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
@@ -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
|
data/lib/telnyx/version.rb
CHANGED
|
@@ -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.
|