telnyx 5.90.0 → 5.91.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/assistant_create_params.rb +9 -227
- data/lib/telnyx/models/ai/assistant_update_params.rb +9 -227
- data/lib/telnyx/models/ai/assistants/update_assistant.rb +9 -232
- data/lib/telnyx/models/ai/external_llm.rb +87 -0
- data/lib/telnyx/models/ai/external_llm_req.rb +87 -0
- data/lib/telnyx/models/ai/fallback_config.rb +37 -0
- data/lib/telnyx/models/ai/fallback_config_req.rb +37 -0
- data/lib/telnyx/models/ai/inference_embedding.rb +9 -230
- data/lib/telnyx/models/ai/post_conversation_settings.rb +30 -0
- data/lib/telnyx/models/ai/post_conversation_settings_req.rb +30 -0
- data/lib/telnyx/resources/ai/assistants/versions.rb +3 -3
- data/lib/telnyx/resources/ai/assistants.rb +6 -6
- data/lib/telnyx/version.rb +1 -1
- data/lib/telnyx.rb +6 -0
- data/rbi/telnyx/models/ai/assistant_create_params.rbi +12 -455
- data/rbi/telnyx/models/ai/assistant_update_params.rbi +12 -455
- data/rbi/telnyx/models/ai/assistants/update_assistant.rbi +12 -461
- data/rbi/telnyx/models/ai/external_llm.rbi +157 -0
- data/rbi/telnyx/models/ai/external_llm_req.rbi +157 -0
- data/rbi/telnyx/models/ai/fallback_config.rbi +64 -0
- data/rbi/telnyx/models/ai/fallback_config_req.rbi +64 -0
- data/rbi/telnyx/models/ai/inference_embedding.rbi +12 -452
- data/rbi/telnyx/models/ai/post_conversation_settings.rbi +45 -0
- data/rbi/telnyx/models/ai/post_conversation_settings_req.rbi +45 -0
- data/rbi/telnyx/resources/ai/assistants/versions.rbi +3 -5
- data/rbi/telnyx/resources/ai/assistants.rbi +6 -10
- data/sig/telnyx/models/ai/assistant_create_params.rbs +18 -205
- data/sig/telnyx/models/ai/assistant_update_params.rbs +18 -205
- data/sig/telnyx/models/ai/assistants/update_assistant.rbs +18 -205
- data/sig/telnyx/models/ai/external_llm.rbs +75 -0
- data/sig/telnyx/models/ai/external_llm_req.rbs +75 -0
- data/sig/telnyx/models/ai/fallback_config.rbs +38 -0
- data/sig/telnyx/models/ai/fallback_config_req.rbs +40 -0
- data/sig/telnyx/models/ai/inference_embedding.rbs +17 -206
- data/sig/telnyx/models/ai/post_conversation_settings.rbs +17 -0
- data/sig/telnyx/models/ai/post_conversation_settings_req.rbs +17 -0
- data/sig/telnyx/resources/ai/assistants/versions.rbs +3 -3
- data/sig/telnyx/resources/ai/assistants.rbs +6 -6
- metadata +20 -2
|
@@ -12,15 +12,15 @@ module Telnyx
|
|
|
12
12
|
dynamic_variables: ::Hash[Symbol, top],
|
|
13
13
|
dynamic_variables_webhook_url: String,
|
|
14
14
|
enabled_features: ::Array[Telnyx::Models::AI::enabled_features],
|
|
15
|
-
external_llm: Telnyx::AI::
|
|
16
|
-
fallback_config: Telnyx::AI::
|
|
15
|
+
external_llm: Telnyx::AI::ExternalLlm,
|
|
16
|
+
fallback_config: Telnyx::AI::FallbackConfig,
|
|
17
17
|
greeting: String,
|
|
18
18
|
import_metadata: Telnyx::AI::ImportMetadata,
|
|
19
19
|
insight_settings: Telnyx::AI::InsightSettings,
|
|
20
20
|
llm_api_key_ref: String,
|
|
21
21
|
messaging_settings: Telnyx::AI::MessagingSettings,
|
|
22
22
|
observability_settings: Telnyx::AI::Observability,
|
|
23
|
-
post_conversation_settings: Telnyx::AI::
|
|
23
|
+
post_conversation_settings: Telnyx::AI::PostConversationSettings,
|
|
24
24
|
privacy_settings: Telnyx::AI::PrivacySettings,
|
|
25
25
|
telephony_settings: Telnyx::AI::TelephonySettings,
|
|
26
26
|
tools: ::Array[Telnyx::Models::AI::assistant_tool],
|
|
@@ -58,17 +58,15 @@ module Telnyx
|
|
|
58
58
|
::Array[Telnyx::Models::AI::enabled_features]
|
|
59
59
|
) -> ::Array[Telnyx::Models::AI::enabled_features]
|
|
60
60
|
|
|
61
|
-
attr_reader external_llm: Telnyx::AI::
|
|
61
|
+
attr_reader external_llm: Telnyx::AI::ExternalLlm?
|
|
62
62
|
|
|
63
|
-
def external_llm=: (
|
|
64
|
-
Telnyx::AI::InferenceEmbedding::ExternalLlm
|
|
65
|
-
) -> Telnyx::AI::InferenceEmbedding::ExternalLlm
|
|
63
|
+
def external_llm=: (Telnyx::AI::ExternalLlm) -> Telnyx::AI::ExternalLlm
|
|
66
64
|
|
|
67
|
-
attr_reader fallback_config: Telnyx::AI::
|
|
65
|
+
attr_reader fallback_config: Telnyx::AI::FallbackConfig?
|
|
68
66
|
|
|
69
67
|
def fallback_config=: (
|
|
70
|
-
Telnyx::AI::
|
|
71
|
-
) -> Telnyx::AI::
|
|
68
|
+
Telnyx::AI::FallbackConfig
|
|
69
|
+
) -> Telnyx::AI::FallbackConfig
|
|
72
70
|
|
|
73
71
|
attr_reader greeting: String?
|
|
74
72
|
|
|
@@ -102,11 +100,11 @@ module Telnyx
|
|
|
102
100
|
Telnyx::AI::Observability
|
|
103
101
|
) -> Telnyx::AI::Observability
|
|
104
102
|
|
|
105
|
-
attr_reader post_conversation_settings: Telnyx::AI::
|
|
103
|
+
attr_reader post_conversation_settings: Telnyx::AI::PostConversationSettings?
|
|
106
104
|
|
|
107
105
|
def post_conversation_settings=: (
|
|
108
|
-
Telnyx::AI::
|
|
109
|
-
) -> Telnyx::AI::
|
|
106
|
+
Telnyx::AI::PostConversationSettings
|
|
107
|
+
) -> Telnyx::AI::PostConversationSettings
|
|
110
108
|
|
|
111
109
|
attr_reader privacy_settings: Telnyx::AI::PrivacySettings?
|
|
112
110
|
|
|
@@ -154,15 +152,15 @@ module Telnyx
|
|
|
154
152
|
?dynamic_variables: ::Hash[Symbol, top],
|
|
155
153
|
?dynamic_variables_webhook_url: String,
|
|
156
154
|
?enabled_features: ::Array[Telnyx::Models::AI::enabled_features],
|
|
157
|
-
?external_llm: Telnyx::AI::
|
|
158
|
-
?fallback_config: Telnyx::AI::
|
|
155
|
+
?external_llm: Telnyx::AI::ExternalLlm,
|
|
156
|
+
?fallback_config: Telnyx::AI::FallbackConfig,
|
|
159
157
|
?greeting: String,
|
|
160
158
|
?import_metadata: Telnyx::AI::ImportMetadata,
|
|
161
159
|
?insight_settings: Telnyx::AI::InsightSettings,
|
|
162
160
|
?llm_api_key_ref: String,
|
|
163
161
|
?messaging_settings: Telnyx::AI::MessagingSettings,
|
|
164
162
|
?observability_settings: Telnyx::AI::Observability,
|
|
165
|
-
?post_conversation_settings: Telnyx::AI::
|
|
163
|
+
?post_conversation_settings: Telnyx::AI::PostConversationSettings,
|
|
166
164
|
?privacy_settings: Telnyx::AI::PrivacySettings,
|
|
167
165
|
?telephony_settings: Telnyx::AI::TelephonySettings,
|
|
168
166
|
?tools: ::Array[Telnyx::Models::AI::assistant_tool],
|
|
@@ -181,15 +179,15 @@ module Telnyx
|
|
|
181
179
|
dynamic_variables: ::Hash[Symbol, top],
|
|
182
180
|
dynamic_variables_webhook_url: String,
|
|
183
181
|
enabled_features: ::Array[Telnyx::Models::AI::enabled_features],
|
|
184
|
-
external_llm: Telnyx::AI::
|
|
185
|
-
fallback_config: Telnyx::AI::
|
|
182
|
+
external_llm: Telnyx::AI::ExternalLlm,
|
|
183
|
+
fallback_config: Telnyx::AI::FallbackConfig,
|
|
186
184
|
greeting: String,
|
|
187
185
|
import_metadata: Telnyx::AI::ImportMetadata,
|
|
188
186
|
insight_settings: Telnyx::AI::InsightSettings,
|
|
189
187
|
llm_api_key_ref: String,
|
|
190
188
|
messaging_settings: Telnyx::AI::MessagingSettings,
|
|
191
189
|
observability_settings: Telnyx::AI::Observability,
|
|
192
|
-
post_conversation_settings: Telnyx::AI::
|
|
190
|
+
post_conversation_settings: Telnyx::AI::PostConversationSettings,
|
|
193
191
|
privacy_settings: Telnyx::AI::PrivacySettings,
|
|
194
192
|
telephony_settings: Telnyx::AI::TelephonySettings,
|
|
195
193
|
tools: ::Array[Telnyx::Models::AI::assistant_tool],
|
|
@@ -197,193 +195,6 @@ module Telnyx
|
|
|
197
195
|
voice_settings: Telnyx::AI::VoiceSettings,
|
|
198
196
|
widget_settings: Telnyx::AI::WidgetSettings
|
|
199
197
|
}
|
|
200
|
-
|
|
201
|
-
type external_llm =
|
|
202
|
-
{
|
|
203
|
-
base_url: String,
|
|
204
|
-
model: String,
|
|
205
|
-
authentication_method: Telnyx::Models::AI::InferenceEmbedding::ExternalLlm::authentication_method,
|
|
206
|
-
certificate_ref: String,
|
|
207
|
-
forward_metadata: bool,
|
|
208
|
-
llm_api_key_ref: String,
|
|
209
|
-
token_retrieval_url: String
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
class ExternalLlm < Telnyx::Internal::Type::BaseModel
|
|
213
|
-
attr_accessor base_url: String
|
|
214
|
-
|
|
215
|
-
attr_accessor model: String
|
|
216
|
-
|
|
217
|
-
attr_reader authentication_method: Telnyx::Models::AI::InferenceEmbedding::ExternalLlm::authentication_method?
|
|
218
|
-
|
|
219
|
-
def authentication_method=: (
|
|
220
|
-
Telnyx::Models::AI::InferenceEmbedding::ExternalLlm::authentication_method
|
|
221
|
-
) -> Telnyx::Models::AI::InferenceEmbedding::ExternalLlm::authentication_method
|
|
222
|
-
|
|
223
|
-
attr_reader certificate_ref: String?
|
|
224
|
-
|
|
225
|
-
def certificate_ref=: (String) -> String
|
|
226
|
-
|
|
227
|
-
attr_reader forward_metadata: bool?
|
|
228
|
-
|
|
229
|
-
def forward_metadata=: (bool) -> bool
|
|
230
|
-
|
|
231
|
-
attr_reader llm_api_key_ref: String?
|
|
232
|
-
|
|
233
|
-
def llm_api_key_ref=: (String) -> String
|
|
234
|
-
|
|
235
|
-
attr_reader token_retrieval_url: String?
|
|
236
|
-
|
|
237
|
-
def token_retrieval_url=: (String) -> String
|
|
238
|
-
|
|
239
|
-
def initialize: (
|
|
240
|
-
base_url: String,
|
|
241
|
-
model: String,
|
|
242
|
-
?authentication_method: Telnyx::Models::AI::InferenceEmbedding::ExternalLlm::authentication_method,
|
|
243
|
-
?certificate_ref: String,
|
|
244
|
-
?forward_metadata: bool,
|
|
245
|
-
?llm_api_key_ref: String,
|
|
246
|
-
?token_retrieval_url: String
|
|
247
|
-
) -> void
|
|
248
|
-
|
|
249
|
-
def to_hash: -> {
|
|
250
|
-
base_url: String,
|
|
251
|
-
model: String,
|
|
252
|
-
authentication_method: Telnyx::Models::AI::InferenceEmbedding::ExternalLlm::authentication_method,
|
|
253
|
-
certificate_ref: String,
|
|
254
|
-
forward_metadata: bool,
|
|
255
|
-
llm_api_key_ref: String,
|
|
256
|
-
token_retrieval_url: String
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
type authentication_method = :token | :certificate
|
|
260
|
-
|
|
261
|
-
module AuthenticationMethod
|
|
262
|
-
extend Telnyx::Internal::Type::Enum
|
|
263
|
-
|
|
264
|
-
TOKEN: :token
|
|
265
|
-
CERTIFICATE: :certificate
|
|
266
|
-
|
|
267
|
-
def self?.values: -> ::Array[Telnyx::Models::AI::InferenceEmbedding::ExternalLlm::authentication_method]
|
|
268
|
-
end
|
|
269
|
-
end
|
|
270
|
-
|
|
271
|
-
type fallback_config =
|
|
272
|
-
{
|
|
273
|
-
external_llm: Telnyx::AI::InferenceEmbedding::FallbackConfig::ExternalLlm,
|
|
274
|
-
llm_api_key_ref: String,
|
|
275
|
-
model: String
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
class FallbackConfig < Telnyx::Internal::Type::BaseModel
|
|
279
|
-
attr_reader external_llm: Telnyx::AI::InferenceEmbedding::FallbackConfig::ExternalLlm?
|
|
280
|
-
|
|
281
|
-
def external_llm=: (
|
|
282
|
-
Telnyx::AI::InferenceEmbedding::FallbackConfig::ExternalLlm
|
|
283
|
-
) -> Telnyx::AI::InferenceEmbedding::FallbackConfig::ExternalLlm
|
|
284
|
-
|
|
285
|
-
attr_reader llm_api_key_ref: String?
|
|
286
|
-
|
|
287
|
-
def llm_api_key_ref=: (String) -> String
|
|
288
|
-
|
|
289
|
-
attr_reader model: String?
|
|
290
|
-
|
|
291
|
-
def model=: (String) -> String
|
|
292
|
-
|
|
293
|
-
def initialize: (
|
|
294
|
-
?external_llm: Telnyx::AI::InferenceEmbedding::FallbackConfig::ExternalLlm,
|
|
295
|
-
?llm_api_key_ref: String,
|
|
296
|
-
?model: String
|
|
297
|
-
) -> void
|
|
298
|
-
|
|
299
|
-
def to_hash: -> {
|
|
300
|
-
external_llm: Telnyx::AI::InferenceEmbedding::FallbackConfig::ExternalLlm,
|
|
301
|
-
llm_api_key_ref: String,
|
|
302
|
-
model: String
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
type external_llm =
|
|
306
|
-
{
|
|
307
|
-
base_url: String,
|
|
308
|
-
model: String,
|
|
309
|
-
authentication_method: Telnyx::Models::AI::InferenceEmbedding::FallbackConfig::ExternalLlm::authentication_method,
|
|
310
|
-
certificate_ref: String,
|
|
311
|
-
forward_metadata: bool,
|
|
312
|
-
llm_api_key_ref: String,
|
|
313
|
-
token_retrieval_url: String
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
class ExternalLlm < Telnyx::Internal::Type::BaseModel
|
|
317
|
-
attr_accessor base_url: String
|
|
318
|
-
|
|
319
|
-
attr_accessor model: String
|
|
320
|
-
|
|
321
|
-
attr_reader authentication_method: Telnyx::Models::AI::InferenceEmbedding::FallbackConfig::ExternalLlm::authentication_method?
|
|
322
|
-
|
|
323
|
-
def authentication_method=: (
|
|
324
|
-
Telnyx::Models::AI::InferenceEmbedding::FallbackConfig::ExternalLlm::authentication_method
|
|
325
|
-
) -> Telnyx::Models::AI::InferenceEmbedding::FallbackConfig::ExternalLlm::authentication_method
|
|
326
|
-
|
|
327
|
-
attr_reader certificate_ref: String?
|
|
328
|
-
|
|
329
|
-
def certificate_ref=: (String) -> String
|
|
330
|
-
|
|
331
|
-
attr_reader forward_metadata: bool?
|
|
332
|
-
|
|
333
|
-
def forward_metadata=: (bool) -> bool
|
|
334
|
-
|
|
335
|
-
attr_reader llm_api_key_ref: String?
|
|
336
|
-
|
|
337
|
-
def llm_api_key_ref=: (String) -> String
|
|
338
|
-
|
|
339
|
-
attr_reader token_retrieval_url: String?
|
|
340
|
-
|
|
341
|
-
def token_retrieval_url=: (String) -> String
|
|
342
|
-
|
|
343
|
-
def initialize: (
|
|
344
|
-
base_url: String,
|
|
345
|
-
model: String,
|
|
346
|
-
?authentication_method: Telnyx::Models::AI::InferenceEmbedding::FallbackConfig::ExternalLlm::authentication_method,
|
|
347
|
-
?certificate_ref: String,
|
|
348
|
-
?forward_metadata: bool,
|
|
349
|
-
?llm_api_key_ref: String,
|
|
350
|
-
?token_retrieval_url: String
|
|
351
|
-
) -> void
|
|
352
|
-
|
|
353
|
-
def to_hash: -> {
|
|
354
|
-
base_url: String,
|
|
355
|
-
model: String,
|
|
356
|
-
authentication_method: Telnyx::Models::AI::InferenceEmbedding::FallbackConfig::ExternalLlm::authentication_method,
|
|
357
|
-
certificate_ref: String,
|
|
358
|
-
forward_metadata: bool,
|
|
359
|
-
llm_api_key_ref: String,
|
|
360
|
-
token_retrieval_url: String
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
type authentication_method = :token | :certificate
|
|
364
|
-
|
|
365
|
-
module AuthenticationMethod
|
|
366
|
-
extend Telnyx::Internal::Type::Enum
|
|
367
|
-
|
|
368
|
-
TOKEN: :token
|
|
369
|
-
CERTIFICATE: :certificate
|
|
370
|
-
|
|
371
|
-
def self?.values: -> ::Array[Telnyx::Models::AI::InferenceEmbedding::FallbackConfig::ExternalLlm::authentication_method]
|
|
372
|
-
end
|
|
373
|
-
end
|
|
374
|
-
end
|
|
375
|
-
|
|
376
|
-
type post_conversation_settings = { enabled: bool }
|
|
377
|
-
|
|
378
|
-
class PostConversationSettings < Telnyx::Internal::Type::BaseModel
|
|
379
|
-
attr_reader enabled: bool?
|
|
380
|
-
|
|
381
|
-
def enabled=: (bool) -> bool
|
|
382
|
-
|
|
383
|
-
def initialize: (?enabled: bool) -> void
|
|
384
|
-
|
|
385
|
-
def to_hash: -> { enabled: bool }
|
|
386
|
-
end
|
|
387
198
|
end
|
|
388
199
|
end
|
|
389
200
|
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
module Telnyx
|
|
2
|
+
module Models
|
|
3
|
+
module AI
|
|
4
|
+
type post_conversation_settings = { enabled: bool }
|
|
5
|
+
|
|
6
|
+
class PostConversationSettings < Telnyx::Internal::Type::BaseModel
|
|
7
|
+
attr_reader enabled: bool?
|
|
8
|
+
|
|
9
|
+
def enabled=: (bool) -> bool
|
|
10
|
+
|
|
11
|
+
def initialize: (?enabled: bool) -> void
|
|
12
|
+
|
|
13
|
+
def to_hash: -> { enabled: bool }
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
module Telnyx
|
|
2
|
+
module Models
|
|
3
|
+
module AI
|
|
4
|
+
type post_conversation_settings_req = { enabled: bool }
|
|
5
|
+
|
|
6
|
+
class PostConversationSettingsReq < Telnyx::Internal::Type::BaseModel
|
|
7
|
+
attr_reader enabled: bool?
|
|
8
|
+
|
|
9
|
+
def enabled=: (bool) -> bool
|
|
10
|
+
|
|
11
|
+
def initialize: (?enabled: bool) -> void
|
|
12
|
+
|
|
13
|
+
def to_hash: -> { enabled: bool }
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -17,8 +17,8 @@ module Telnyx
|
|
|
17
17
|
?dynamic_variables: ::Hash[Symbol, top],
|
|
18
18
|
?dynamic_variables_webhook_url: String,
|
|
19
19
|
?enabled_features: ::Array[Telnyx::Models::AI::enabled_features],
|
|
20
|
-
?external_llm: Telnyx::AI::
|
|
21
|
-
?fallback_config: Telnyx::AI::
|
|
20
|
+
?external_llm: Telnyx::AI::ExternalLlmReq,
|
|
21
|
+
?fallback_config: Telnyx::AI::FallbackConfigReq,
|
|
22
22
|
?greeting: String,
|
|
23
23
|
?insight_settings: Telnyx::AI::InsightSettings,
|
|
24
24
|
?instructions: String,
|
|
@@ -27,7 +27,7 @@ module Telnyx
|
|
|
27
27
|
?model: String,
|
|
28
28
|
?name: String,
|
|
29
29
|
?observability_settings: Telnyx::AI::ObservabilityReq,
|
|
30
|
-
?post_conversation_settings: Telnyx::AI::
|
|
30
|
+
?post_conversation_settings: Telnyx::AI::PostConversationSettingsReq,
|
|
31
31
|
?privacy_settings: Telnyx::AI::PrivacySettings,
|
|
32
32
|
?telephony_settings: Telnyx::AI::TelephonySettings,
|
|
33
33
|
?tool_ids: ::Array[String],
|
|
@@ -22,14 +22,14 @@ module Telnyx
|
|
|
22
22
|
?dynamic_variables: ::Hash[Symbol, top],
|
|
23
23
|
?dynamic_variables_webhook_url: String,
|
|
24
24
|
?enabled_features: ::Array[Telnyx::Models::AI::enabled_features],
|
|
25
|
-
?external_llm: Telnyx::AI::
|
|
26
|
-
?fallback_config: Telnyx::AI::
|
|
25
|
+
?external_llm: Telnyx::AI::ExternalLlmReq,
|
|
26
|
+
?fallback_config: Telnyx::AI::FallbackConfigReq,
|
|
27
27
|
?greeting: String,
|
|
28
28
|
?insight_settings: Telnyx::AI::InsightSettings,
|
|
29
29
|
?llm_api_key_ref: String,
|
|
30
30
|
?messaging_settings: Telnyx::AI::MessagingSettings,
|
|
31
31
|
?observability_settings: Telnyx::AI::ObservabilityReq,
|
|
32
|
-
?post_conversation_settings: Telnyx::AI::
|
|
32
|
+
?post_conversation_settings: Telnyx::AI::PostConversationSettingsReq,
|
|
33
33
|
?privacy_settings: Telnyx::AI::PrivacySettings,
|
|
34
34
|
?telephony_settings: Telnyx::AI::TelephonySettings,
|
|
35
35
|
?tool_ids: ::Array[String],
|
|
@@ -55,8 +55,8 @@ module Telnyx
|
|
|
55
55
|
?dynamic_variables: ::Hash[Symbol, top],
|
|
56
56
|
?dynamic_variables_webhook_url: String,
|
|
57
57
|
?enabled_features: ::Array[Telnyx::Models::AI::enabled_features],
|
|
58
|
-
?external_llm: Telnyx::AI::
|
|
59
|
-
?fallback_config: Telnyx::AI::
|
|
58
|
+
?external_llm: Telnyx::AI::ExternalLlmReq,
|
|
59
|
+
?fallback_config: Telnyx::AI::FallbackConfigReq,
|
|
60
60
|
?greeting: String,
|
|
61
61
|
?insight_settings: Telnyx::AI::InsightSettings,
|
|
62
62
|
?instructions: String,
|
|
@@ -65,7 +65,7 @@ module Telnyx
|
|
|
65
65
|
?model: String,
|
|
66
66
|
?name: String,
|
|
67
67
|
?observability_settings: Telnyx::AI::ObservabilityReq,
|
|
68
|
-
?post_conversation_settings: Telnyx::AI::
|
|
68
|
+
?post_conversation_settings: Telnyx::AI::PostConversationSettingsReq,
|
|
69
69
|
?privacy_settings: Telnyx::AI::PrivacySettings,
|
|
70
70
|
?promote_to_main: bool,
|
|
71
71
|
?telephony_settings: Telnyx::AI::TelephonySettings,
|
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.91.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-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -273,6 +273,10 @@ files:
|
|
|
273
273
|
- lib/telnyx/models/ai/embeddings/bucket_retrieve_params.rb
|
|
274
274
|
- lib/telnyx/models/ai/embeddings/bucket_retrieve_response.rb
|
|
275
275
|
- lib/telnyx/models/ai/enabled_features.rb
|
|
276
|
+
- lib/telnyx/models/ai/external_llm.rb
|
|
277
|
+
- lib/telnyx/models/ai/external_llm_req.rb
|
|
278
|
+
- lib/telnyx/models/ai/fallback_config.rb
|
|
279
|
+
- lib/telnyx/models/ai/fallback_config_req.rb
|
|
276
280
|
- lib/telnyx/models/ai/fine_tuning/fine_tuning_job.rb
|
|
277
281
|
- lib/telnyx/models/ai/fine_tuning/job_cancel_params.rb
|
|
278
282
|
- lib/telnyx/models/ai/fine_tuning/job_create_params.rb
|
|
@@ -388,6 +392,8 @@ files:
|
|
|
388
392
|
- lib/telnyx/models/ai/openai/embedding_create_embeddings_response.rb
|
|
389
393
|
- lib/telnyx/models/ai/openai/embedding_list_embedding_models_params.rb
|
|
390
394
|
- lib/telnyx/models/ai/openai/embedding_list_embedding_models_response.rb
|
|
395
|
+
- lib/telnyx/models/ai/post_conversation_settings.rb
|
|
396
|
+
- lib/telnyx/models/ai/post_conversation_settings_req.rb
|
|
391
397
|
- lib/telnyx/models/ai/privacy_settings.rb
|
|
392
398
|
- lib/telnyx/models/ai/recursive_cluster.rb
|
|
393
399
|
- lib/telnyx/models/ai/retrieval_tool.rb
|
|
@@ -2958,6 +2964,10 @@ files:
|
|
|
2958
2964
|
- rbi/telnyx/models/ai/embeddings/bucket_retrieve_params.rbi
|
|
2959
2965
|
- rbi/telnyx/models/ai/embeddings/bucket_retrieve_response.rbi
|
|
2960
2966
|
- rbi/telnyx/models/ai/enabled_features.rbi
|
|
2967
|
+
- rbi/telnyx/models/ai/external_llm.rbi
|
|
2968
|
+
- rbi/telnyx/models/ai/external_llm_req.rbi
|
|
2969
|
+
- rbi/telnyx/models/ai/fallback_config.rbi
|
|
2970
|
+
- rbi/telnyx/models/ai/fallback_config_req.rbi
|
|
2961
2971
|
- rbi/telnyx/models/ai/fine_tuning/fine_tuning_job.rbi
|
|
2962
2972
|
- rbi/telnyx/models/ai/fine_tuning/job_cancel_params.rbi
|
|
2963
2973
|
- rbi/telnyx/models/ai/fine_tuning/job_create_params.rbi
|
|
@@ -3073,6 +3083,8 @@ files:
|
|
|
3073
3083
|
- rbi/telnyx/models/ai/openai/embedding_create_embeddings_response.rbi
|
|
3074
3084
|
- rbi/telnyx/models/ai/openai/embedding_list_embedding_models_params.rbi
|
|
3075
3085
|
- rbi/telnyx/models/ai/openai/embedding_list_embedding_models_response.rbi
|
|
3086
|
+
- rbi/telnyx/models/ai/post_conversation_settings.rbi
|
|
3087
|
+
- rbi/telnyx/models/ai/post_conversation_settings_req.rbi
|
|
3076
3088
|
- rbi/telnyx/models/ai/privacy_settings.rbi
|
|
3077
3089
|
- rbi/telnyx/models/ai/recursive_cluster.rbi
|
|
3078
3090
|
- rbi/telnyx/models/ai/retrieval_tool.rbi
|
|
@@ -5634,6 +5646,10 @@ files:
|
|
|
5634
5646
|
- sig/telnyx/models/ai/embeddings/bucket_retrieve_params.rbs
|
|
5635
5647
|
- sig/telnyx/models/ai/embeddings/bucket_retrieve_response.rbs
|
|
5636
5648
|
- sig/telnyx/models/ai/enabled_features.rbs
|
|
5649
|
+
- sig/telnyx/models/ai/external_llm.rbs
|
|
5650
|
+
- sig/telnyx/models/ai/external_llm_req.rbs
|
|
5651
|
+
- sig/telnyx/models/ai/fallback_config.rbs
|
|
5652
|
+
- sig/telnyx/models/ai/fallback_config_req.rbs
|
|
5637
5653
|
- sig/telnyx/models/ai/fine_tuning/fine_tuning_job.rbs
|
|
5638
5654
|
- sig/telnyx/models/ai/fine_tuning/job_cancel_params.rbs
|
|
5639
5655
|
- sig/telnyx/models/ai/fine_tuning/job_create_params.rbs
|
|
@@ -5749,6 +5765,8 @@ files:
|
|
|
5749
5765
|
- sig/telnyx/models/ai/openai/embedding_create_embeddings_response.rbs
|
|
5750
5766
|
- sig/telnyx/models/ai/openai/embedding_list_embedding_models_params.rbs
|
|
5751
5767
|
- sig/telnyx/models/ai/openai/embedding_list_embedding_models_response.rbs
|
|
5768
|
+
- sig/telnyx/models/ai/post_conversation_settings.rbs
|
|
5769
|
+
- sig/telnyx/models/ai/post_conversation_settings_req.rbs
|
|
5752
5770
|
- sig/telnyx/models/ai/privacy_settings.rbs
|
|
5753
5771
|
- sig/telnyx/models/ai/recursive_cluster.rbs
|
|
5754
5772
|
- sig/telnyx/models/ai/retrieval_tool.rbs
|