telnyx 5.4.1 → 5.5.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/chat_create_completion_params.rb +1 -1
- data/lib/telnyx/models/ai/cluster_compute_params.rb +1 -1
- data/lib/telnyx/models/ai/voice_settings.rb +1 -1
- data/lib/telnyx/version.rb +1 -1
- data/rbi/telnyx/models/ai/chat_create_completion_params.rbi +2 -2
- data/rbi/telnyx/models/ai/cluster_compute_params.rbi +2 -2
- data/rbi/telnyx/models/ai/voice_settings.rbi +2 -2
- data/rbi/telnyx/resources/ai/chat.rbi +1 -1
- data/rbi/telnyx/resources/ai/clusters.rbi +1 -1
- 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: de2a1bb0954955181d18e326904fc0d2827878db04c8f66a750f6fde4f183d0f
|
|
4
|
+
data.tar.gz: 40ad1734648f14c5bdbe6ad81d5e12855ddba2e97426deb905629fb97519e482
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2315e14653fe8c7f6d86377e4d246bd2b36cb8985231a786bba4d28801dd1251b0718ecf4de9cac71ad17466000e2b831649c81ccc25c0c42fdb14e9e8e152ce
|
|
7
|
+
data.tar.gz: 333e0e1a6c28d93d26e8f0ffbd804a3845f83849c083e22a29ca81261522a2c273f1b27be5453d2fc2cad73223d55a46e85639548d2a3a068881113c6b5113eb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.5.0 (2026-01-28)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v5.4.1...v5.5.0](https://github.com/team-telnyx/telnyx-ruby/compare/v5.4.1...v5.5.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Fix broken documentation links ([3eb58e6](https://github.com/team-telnyx/telnyx-ruby/commit/3eb58e6dd37cbedf4710ac78f72feb7d8cefe76a))
|
|
10
|
+
|
|
3
11
|
## 5.4.1 (2026-01-28)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v5.4.0...v5.4.1](https://github.com/team-telnyx/telnyx-ruby/compare/v5.4.0...v5.4.1)
|
data/README.md
CHANGED
|
@@ -18,7 +18,7 @@ module Telnyx
|
|
|
18
18
|
# @!attribute api_key_ref
|
|
19
19
|
# If you are using an external inference provider like xAI or OpenAI, this field
|
|
20
20
|
# allows you to pass along a reference to your API key. After creating an
|
|
21
|
-
# [integration secret](https://developers.telnyx.com/api
|
|
21
|
+
# [integration secret](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
|
|
22
22
|
# for you API key, pass the secret's `identifier` in this field.
|
|
23
23
|
#
|
|
24
24
|
# @return [String, nil]
|
|
@@ -11,7 +11,7 @@ module Telnyx
|
|
|
11
11
|
# @!attribute bucket
|
|
12
12
|
# The embedded storage bucket to compute the clusters from. The bucket must
|
|
13
13
|
# already be
|
|
14
|
-
# [embedded](https://developers.telnyx.com/api/
|
|
14
|
+
# [embedded](https://developers.telnyx.com/api-reference/embeddings/embed-documents).
|
|
15
15
|
#
|
|
16
16
|
# @return [String]
|
|
17
17
|
required :bucket, String
|
|
@@ -18,7 +18,7 @@ module Telnyx
|
|
|
18
18
|
|
|
19
19
|
# @!attribute api_key_ref
|
|
20
20
|
# The `identifier` for an integration secret
|
|
21
|
-
# [/v2/integration_secrets](https://developers.telnyx.com/api
|
|
21
|
+
# [/v2/integration_secrets](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
|
|
22
22
|
# that refers to your ElevenLabs API key. Warning: Free plans are unlikely to work
|
|
23
23
|
# with this integration.
|
|
24
24
|
#
|
data/lib/telnyx/version.rb
CHANGED
|
@@ -23,7 +23,7 @@ module Telnyx
|
|
|
23
23
|
|
|
24
24
|
# If you are using an external inference provider like xAI or OpenAI, this field
|
|
25
25
|
# allows you to pass along a reference to your API key. After creating an
|
|
26
|
-
# [integration secret](https://developers.telnyx.com/api
|
|
26
|
+
# [integration secret](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
|
|
27
27
|
# for you API key, pass the secret's `identifier` in this field.
|
|
28
28
|
sig { returns(T.nilable(String)) }
|
|
29
29
|
attr_reader :api_key_ref
|
|
@@ -280,7 +280,7 @@ module Telnyx
|
|
|
280
280
|
messages:,
|
|
281
281
|
# If you are using an external inference provider like xAI or OpenAI, this field
|
|
282
282
|
# allows you to pass along a reference to your API key. After creating an
|
|
283
|
-
# [integration secret](https://developers.telnyx.com/api
|
|
283
|
+
# [integration secret](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
|
|
284
284
|
# for you API key, pass the secret's `identifier` in this field.
|
|
285
285
|
api_key_ref: nil,
|
|
286
286
|
# This is used with `use_beam_search` to determine how many candidate beams to
|
|
@@ -14,7 +14,7 @@ module Telnyx
|
|
|
14
14
|
|
|
15
15
|
# The embedded storage bucket to compute the clusters from. The bucket must
|
|
16
16
|
# already be
|
|
17
|
-
# [embedded](https://developers.telnyx.com/api/
|
|
17
|
+
# [embedded](https://developers.telnyx.com/api-reference/embeddings/embed-documents).
|
|
18
18
|
sig { returns(String) }
|
|
19
19
|
attr_accessor :bucket
|
|
20
20
|
|
|
@@ -61,7 +61,7 @@ module Telnyx
|
|
|
61
61
|
def self.new(
|
|
62
62
|
# The embedded storage bucket to compute the clusters from. The bucket must
|
|
63
63
|
# already be
|
|
64
|
-
# [embedded](https://developers.telnyx.com/api/
|
|
64
|
+
# [embedded](https://developers.telnyx.com/api-reference/embeddings/embed-documents).
|
|
65
65
|
bucket:,
|
|
66
66
|
# Array of files to filter which are included.
|
|
67
67
|
files: nil,
|
|
@@ -20,7 +20,7 @@ module Telnyx
|
|
|
20
20
|
attr_accessor :voice
|
|
21
21
|
|
|
22
22
|
# The `identifier` for an integration secret
|
|
23
|
-
# [/v2/integration_secrets](https://developers.telnyx.com/api
|
|
23
|
+
# [/v2/integration_secrets](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
|
|
24
24
|
# that refers to your ElevenLabs API key. Warning: Free plans are unlikely to work
|
|
25
25
|
# with this integration.
|
|
26
26
|
sig { returns(T.nilable(String)) }
|
|
@@ -136,7 +136,7 @@ module Telnyx
|
|
|
136
136
|
# Telnyx.KokoroTTS.af_heart)
|
|
137
137
|
voice:,
|
|
138
138
|
# The `identifier` for an integration secret
|
|
139
|
-
# [/v2/integration_secrets](https://developers.telnyx.com/api
|
|
139
|
+
# [/v2/integration_secrets](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
|
|
140
140
|
# that refers to your ElevenLabs API key. Warning: Free plans are unlikely to work
|
|
141
141
|
# with this integration.
|
|
142
142
|
api_key_ref: nil,
|
|
@@ -49,7 +49,7 @@ module Telnyx
|
|
|
49
49
|
messages:,
|
|
50
50
|
# If you are using an external inference provider like xAI or OpenAI, this field
|
|
51
51
|
# allows you to pass along a reference to your API key. After creating an
|
|
52
|
-
# [integration secret](https://developers.telnyx.com/api
|
|
52
|
+
# [integration secret](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
|
|
53
53
|
# for you API key, pass the secret's `identifier` in this field.
|
|
54
54
|
api_key_ref: nil,
|
|
55
55
|
# This is used with `use_beam_search` to determine how many candidate beams to
|
|
@@ -65,7 +65,7 @@ module Telnyx
|
|
|
65
65
|
def compute(
|
|
66
66
|
# The embedded storage bucket to compute the clusters from. The bucket must
|
|
67
67
|
# already be
|
|
68
|
-
# [embedded](https://developers.telnyx.com/api/
|
|
68
|
+
# [embedded](https://developers.telnyx.com/api-reference/embeddings/embed-documents).
|
|
69
69
|
bucket:,
|
|
70
70
|
# Array of files to filter which are included.
|
|
71
71
|
files: nil,
|