telnyx 5.92.0 → 5.93.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.
@@ -24,11 +24,24 @@ module Telnyx
24
24
  # @return [Hash{Symbol=>Object}, nil]
25
25
  optional :dynamic_variables, Telnyx::Internal::Type::HashOf[Telnyx::Internal::Type::Unknown]
26
26
 
27
+ # @!attribute dynamic_variables_webhook_timeout_ms
28
+ # Timeout in milliseconds for the dynamic variables webhook. Must be between 1 and
29
+ # 10000 ms. If the webhook does not respond within this timeout, the call proceeds
30
+ # with default values. See the
31
+ # [dynamic variables guide](https://developers.telnyx.com/docs/inference/ai-assistants/dynamic-variables).
32
+ #
33
+ # @return [Integer, nil]
34
+ optional :dynamic_variables_webhook_timeout_ms, Integer
35
+
27
36
  # @!attribute dynamic_variables_webhook_url
28
- # If the dynamic_variables_webhook_url is set for the assistant, we will send a
29
- # request at the start of the conversation. See our
30
- # [guide](https://developers.telnyx.com/docs/inference/ai-assistants/dynamic-variables)
31
- # for more information.
37
+ # If `dynamic_variables_webhook_url` is set, Telnyx sends a POST request to this
38
+ # URL at the start of the conversation to resolve dynamic variables. **Gotcha:**
39
+ # the webhook response must wrap variables under a top-level `dynamic_variables`
40
+ # object, e.g. `{"dynamic_variables": {"customer_name": "Jane"}}`. Returning a
41
+ # flat object will be ignored and variables will fall back to their defaults. See
42
+ # the
43
+ # [dynamic variables guide](https://developers.telnyx.com/docs/inference/ai-assistants/dynamic-variables)
44
+ # for the full request/response format and timeout behavior.
32
45
  #
33
46
  # @return [String, nil]
34
47
  optional :dynamic_variables_webhook_url, String
@@ -71,25 +84,57 @@ module Telnyx
71
84
  # @return [String, nil]
72
85
  optional :instructions, String
73
86
 
87
+ # @!attribute integrations
88
+ # Connected integrations attached to the assistant. The catalog of available
89
+ # integrations is at `/ai/integrations`; the user's connected integrations are at
90
+ # `/ai/integrations/connections`. Each item references a catalog integration by
91
+ # `integration_id`.
92
+ #
93
+ # @return [Array<Telnyx::Models::AI::AssistantUpdateParams::Integration>, nil]
94
+ optional :integrations,
95
+ -> { Telnyx::Internal::Type::ArrayOf[Telnyx::AI::AssistantUpdateParams::Integration] }
96
+
97
+ # @!attribute interruption_settings
98
+ # Settings for interruptions and how the assistant decides the user has finished
99
+ # speaking. These timings are most relevant when using non turn-taking
100
+ # transcription models. For turn-taking models like `deepgram/flux`, end-of-turn
101
+ # behavior is controlled by the transcription end-of-turn settings under
102
+ # `transcription.settings` (`eot_threshold`, `eot_timeout_ms`,
103
+ # `eager_eot_threshold`).
104
+ #
105
+ # @return [Telnyx::Models::AI::AssistantUpdateParams::InterruptionSettings, nil]
106
+ optional :interruption_settings, -> { Telnyx::AI::AssistantUpdateParams::InterruptionSettings }
107
+
74
108
  # @!attribute llm_api_key_ref
75
- # This is only needed when using third-party inference providers. The `identifier`
76
- # for an integration secret
109
+ # This is only needed when using third-party inference providers selected by
110
+ # `model`. The `identifier` for an integration secret
77
111
  # [/v2/integration_secrets](https://developers.telnyx.com/api-reference/integration-secrets/create-a-secret)
78
- # that refers to your LLM provider's API key. Warning: Free plans are unlikely to
79
- # work with this integration.
112
+ # that refers to your LLM provider's API key. For bring-your-own endpoint
113
+ # authentication, use `external_llm.llm_api_key_ref` instead. Warning: Free plans
114
+ # are unlikely to work with this integration.
80
115
  #
81
116
  # @return [String, nil]
82
117
  optional :llm_api_key_ref, String
83
118
 
119
+ # @!attribute mcp_servers
120
+ # MCP servers attached to the assistant. Create MCP servers with
121
+ # `/ai/mcp_servers`, then reference them by `id` here.
122
+ #
123
+ # @return [Array<Telnyx::Models::AI::AssistantUpdateParams::McpServer>, nil]
124
+ optional :mcp_servers,
125
+ -> { Telnyx::Internal::Type::ArrayOf[Telnyx::AI::AssistantUpdateParams::McpServer] }
126
+
84
127
  # @!attribute messaging_settings
85
128
  #
86
129
  # @return [Telnyx::Models::AI::MessagingSettings, nil]
87
130
  optional :messaging_settings, -> { Telnyx::AI::MessagingSettings }
88
131
 
89
132
  # @!attribute model
90
- # ID of the model to use. You can use the
133
+ # ID of the model to use when `external_llm` is not set. You can use the
91
134
  # [Get models API](https://developers.telnyx.com/api-reference/chat/get-available-models)
92
- # to see all of your available models,
135
+ # to see available models. If `external_llm` is provided, the assistant uses
136
+ # `external_llm` instead of this field. If neither `model` nor `external_llm` is
137
+ # provided, Telnyx applies the default model.
93
138
  #
94
139
  # @return [String, nil]
95
140
  optional :model, String
@@ -127,19 +172,29 @@ module Telnyx
127
172
  # @return [Boolean, nil]
128
173
  optional :promote_to_main, Telnyx::Internal::Type::Boolean
129
174
 
175
+ # @!attribute tags
176
+ # Tags associated with the assistant. Tags can also be managed with the assistant
177
+ # tag endpoints.
178
+ #
179
+ # @return [Array<String>, nil]
180
+ optional :tags, Telnyx::Internal::Type::ArrayOf[String]
181
+
130
182
  # @!attribute telephony_settings
131
183
  #
132
184
  # @return [Telnyx::Models::AI::TelephonySettings, nil]
133
185
  optional :telephony_settings, -> { Telnyx::AI::TelephonySettings }
134
186
 
135
187
  # @!attribute tool_ids
188
+ # IDs of shared tools to attach to the assistant. New integrations should prefer
189
+ # `tool_ids` over inline `tools`.
136
190
  #
137
191
  # @return [Array<String>, nil]
138
192
  optional :tool_ids, Telnyx::Internal::Type::ArrayOf[String]
139
193
 
140
194
  # @!attribute tools
141
- # The tools that the assistant can use. These may be templated with
142
- # [dynamic variables](https://developers.telnyx.com/docs/inference/ai-assistants/dynamic-variables)
195
+ # Deprecated for new integrations. Inline tool definitions available to the
196
+ # assistant. Prefer `tool_ids` to attach shared tools created with the AI Tools
197
+ # endpoints.
143
198
  #
144
199
  # @return [Array<Telnyx::Models::AI::InferenceEmbeddingWebhookToolParams, Telnyx::Models::AI::RetrievalTool, Telnyx::Models::AI::AssistantTool::Handoff, Telnyx::Models::AI::HangupTool, Telnyx::Models::AI::AssistantTool::Transfer, Telnyx::Models::AI::AssistantTool::Invite, Telnyx::Models::AI::AssistantTool::Refer, Telnyx::Models::AI::AssistantTool::SendDtmf, Telnyx::Models::AI::AssistantTool::SendMessage, Telnyx::Models::AI::AssistantTool::SkipTurn>, nil]
145
200
  optional :tools, -> { Telnyx::Internal::Type::ArrayOf[union: Telnyx::AI::AssistantTool] }
@@ -149,6 +204,12 @@ module Telnyx
149
204
  # @return [Telnyx::Models::AI::TranscriptionSettings, nil]
150
205
  optional :transcription, -> { Telnyx::AI::TranscriptionSettings }
151
206
 
207
+ # @!attribute version_name
208
+ # Human-readable name for the assistant version.
209
+ #
210
+ # @return [String, nil]
211
+ optional :version_name, String
212
+
152
213
  # @!attribute voice_settings
153
214
  #
154
215
  # @return [Telnyx::Models::AI::VoiceSettings, nil]
@@ -160,7 +221,7 @@ module Telnyx
160
221
  # @return [Telnyx::Models::AI::WidgetSettings, nil]
161
222
  optional :widget_settings, -> { Telnyx::AI::WidgetSettings }
162
223
 
163
- # @!method initialize(assistant_id:, description: nil, dynamic_variables: nil, dynamic_variables_webhook_url: nil, enabled_features: nil, external_llm: nil, fallback_config: nil, greeting: nil, insight_settings: nil, instructions: nil, llm_api_key_ref: nil, messaging_settings: nil, model: nil, name: nil, observability_settings: nil, post_conversation_settings: nil, privacy_settings: nil, promote_to_main: nil, telephony_settings: nil, tool_ids: nil, tools: nil, transcription: nil, voice_settings: nil, widget_settings: nil, request_options: {})
224
+ # @!method initialize(assistant_id:, description: nil, dynamic_variables: nil, dynamic_variables_webhook_timeout_ms: nil, dynamic_variables_webhook_url: nil, enabled_features: nil, external_llm: nil, fallback_config: nil, greeting: nil, insight_settings: nil, instructions: nil, integrations: nil, interruption_settings: nil, llm_api_key_ref: nil, mcp_servers: nil, messaging_settings: nil, model: nil, name: nil, observability_settings: nil, post_conversation_settings: nil, privacy_settings: nil, promote_to_main: nil, tags: nil, telephony_settings: nil, tool_ids: nil, tools: nil, transcription: nil, version_name: nil, voice_settings: nil, widget_settings: nil, request_options: {})
164
225
  # Some parameter documentations has been truncated, see
165
226
  # {Telnyx::Models::AI::AssistantUpdateParams} for more details.
166
227
  #
@@ -170,7 +231,9 @@ module Telnyx
170
231
  #
171
232
  # @param dynamic_variables [Hash{Symbol=>Object}] Map of dynamic variables and their default values
172
233
  #
173
- # @param dynamic_variables_webhook_url [String] If the dynamic_variables_webhook_url is set for the assistant, we will send a re
234
+ # @param dynamic_variables_webhook_timeout_ms [Integer] Timeout in milliseconds for the dynamic variables webhook. Must be between 1 and
235
+ #
236
+ # @param dynamic_variables_webhook_url [String] If `dynamic_variables_webhook_url` is set, Telnyx sends a POST request to this U
174
237
  #
175
238
  # @param enabled_features [Array<Symbol, Telnyx::Models::AI::EnabledFeatures>]
176
239
  #
@@ -184,11 +247,17 @@ module Telnyx
184
247
  #
185
248
  # @param instructions [String] System instructions for the assistant. These may be templated with [dynamic vari
186
249
  #
187
- # @param llm_api_key_ref [String] This is only needed when using third-party inference providers. The `identifier`
250
+ # @param integrations [Array<Telnyx::Models::AI::AssistantUpdateParams::Integration>] Connected integrations attached to the assistant. The catalog of available integ
251
+ #
252
+ # @param interruption_settings [Telnyx::Models::AI::AssistantUpdateParams::InterruptionSettings] Settings for interruptions and how the assistant decides the user has finished s
253
+ #
254
+ # @param llm_api_key_ref [String] This is only needed when using third-party inference providers selected by `mode
255
+ #
256
+ # @param mcp_servers [Array<Telnyx::Models::AI::AssistantUpdateParams::McpServer>] MCP servers attached to the assistant. Create MCP servers with `/ai/mcp_servers`
188
257
  #
189
258
  # @param messaging_settings [Telnyx::Models::AI::MessagingSettings]
190
259
  #
191
- # @param model [String] ID of the model to use. You can use the [Get models API](https://developers.teln
260
+ # @param model [String] ID of the model to use when `external_llm` is not set. You can use the [Get mode
192
261
  #
193
262
  # @param name [String]
194
263
  #
@@ -200,14 +269,18 @@ module Telnyx
200
269
  #
201
270
  # @param promote_to_main [Boolean] Indicates whether the assistant should be promoted to the main version. Defaults
202
271
  #
272
+ # @param tags [Array<String>] Tags associated with the assistant. Tags can also be managed with the assistant
273
+ #
203
274
  # @param telephony_settings [Telnyx::Models::AI::TelephonySettings]
204
275
  #
205
- # @param tool_ids [Array<String>]
276
+ # @param tool_ids [Array<String>] IDs of shared tools to attach to the assistant. New integrations should prefer `
206
277
  #
207
- # @param tools [Array<Telnyx::Models::AI::InferenceEmbeddingWebhookToolParams, Telnyx::Models::AI::RetrievalTool, Telnyx::Models::AI::AssistantTool::Handoff, Telnyx::Models::AI::HangupTool, Telnyx::Models::AI::AssistantTool::Transfer, Telnyx::Models::AI::AssistantTool::Invite, Telnyx::Models::AI::AssistantTool::Refer, Telnyx::Models::AI::AssistantTool::SendDtmf, Telnyx::Models::AI::AssistantTool::SendMessage, Telnyx::Models::AI::AssistantTool::SkipTurn>] The tools that the assistant can use. These may be templated with [dynamic varia
278
+ # @param tools [Array<Telnyx::Models::AI::InferenceEmbeddingWebhookToolParams, Telnyx::Models::AI::RetrievalTool, Telnyx::Models::AI::AssistantTool::Handoff, Telnyx::Models::AI::HangupTool, Telnyx::Models::AI::AssistantTool::Transfer, Telnyx::Models::AI::AssistantTool::Invite, Telnyx::Models::AI::AssistantTool::Refer, Telnyx::Models::AI::AssistantTool::SendDtmf, Telnyx::Models::AI::AssistantTool::SendMessage, Telnyx::Models::AI::AssistantTool::SkipTurn>] Deprecated for new integrations. Inline tool definitions available to the assist
208
279
  #
209
280
  # @param transcription [Telnyx::Models::AI::TranscriptionSettings]
210
281
  #
282
+ # @param version_name [String] Human-readable name for the assistant version.
283
+ #
211
284
  # @param voice_settings [Telnyx::Models::AI::VoiceSettings]
212
285
  #
213
286
  # @param widget_settings [Telnyx::Models::AI::WidgetSettings] Configuration settings for the assistant's web widget.
@@ -242,11 +315,13 @@ module Telnyx
242
315
  optional :certificate_ref, String
243
316
 
244
317
  # @!attribute forward_metadata
245
- # When enabled, Telnyx forwards the assistant's dynamic variables to the external
246
- # LLM endpoint. Defaults to false. The chat completion request includes a
247
- # top-level `extra_metadata` object when dynamic variables are available. For
248
- # example:
249
- # `{"extra_metadata":{"customer_name":"Jane","account_id":"acct_789","telnyx_agent_target":"+13125550100","telnyx_end_user_target":"+13125550123"}}`.
318
+ # When `true`, Telnyx forwards the assistant's dynamic variables to the external
319
+ # LLM endpoint as a top-level `extra_metadata` object on the chat completion
320
+ # request body. Defaults to `false`. Example payload sent to the external
321
+ # endpoint:
322
+ # `{"extra_metadata": {"customer_name": "Jane", "account_id": "acct_789", "telnyx_agent_target": "+13125550100", "telnyx_end_user_target": "+13125550123"}}`.
323
+ # Distinct from OpenAI's native `metadata` field, which has its own size and type
324
+ # limits.
250
325
  #
251
326
  # @return [Boolean, nil]
252
327
  optional :forward_metadata, Telnyx::Internal::Type::Boolean
@@ -275,7 +350,7 @@ module Telnyx
275
350
  #
276
351
  # @param certificate_ref [String] Integration secret identifier for the client certificate used with certificate a
277
352
  #
278
- # @param forward_metadata [Boolean] When enabled, Telnyx forwards the assistant's dynamic variables to the external
353
+ # @param forward_metadata [Boolean] When `true`, Telnyx forwards the assistant's dynamic variables to the external L
279
354
  #
280
355
  # @param llm_api_key_ref [String] Integration secret identifier for the external LLM API key.
281
356
  #
@@ -353,11 +428,13 @@ module Telnyx
353
428
  optional :certificate_ref, String
354
429
 
355
430
  # @!attribute forward_metadata
356
- # When enabled, Telnyx forwards the assistant's dynamic variables to the external
357
- # LLM endpoint. Defaults to false. The chat completion request includes a
358
- # top-level `extra_metadata` object when dynamic variables are available. For
359
- # example:
360
- # `{"extra_metadata":{"customer_name":"Jane","account_id":"acct_789","telnyx_agent_target":"+13125550100","telnyx_end_user_target":"+13125550123"}}`.
431
+ # When `true`, Telnyx forwards the assistant's dynamic variables to the external
432
+ # LLM endpoint as a top-level `extra_metadata` object on the chat completion
433
+ # request body. Defaults to `false`. Example payload sent to the external
434
+ # endpoint:
435
+ # `{"extra_metadata": {"customer_name": "Jane", "account_id": "acct_789", "telnyx_agent_target": "+13125550100", "telnyx_end_user_target": "+13125550123"}}`.
436
+ # Distinct from OpenAI's native `metadata` field, which has its own size and type
437
+ # limits.
361
438
  #
362
439
  # @return [Boolean, nil]
363
440
  optional :forward_metadata, Telnyx::Internal::Type::Boolean
@@ -387,7 +464,7 @@ module Telnyx
387
464
  #
388
465
  # @param certificate_ref [String] Integration secret identifier for the client certificate used with certificate a
389
466
  #
390
- # @param forward_metadata [Boolean] When enabled, Telnyx forwards the assistant's dynamic variables to the external
467
+ # @param forward_metadata [Boolean] When `true`, Telnyx forwards the assistant's dynamic variables to the external L
391
468
  #
392
469
  # @param llm_api_key_ref [String] Integration secret identifier for the external LLM API key.
393
470
  #
@@ -408,6 +485,165 @@ module Telnyx
408
485
  end
409
486
  end
410
487
 
488
+ class Integration < Telnyx::Internal::Type::BaseModel
489
+ # @!attribute integration_id
490
+ # Catalog integration ID to attach. This is the `id` from the integrations catalog
491
+ # at `/ai/integrations` (the same value also appears as `integration_id` on
492
+ # entries returned by `/ai/integrations/connections`). It is **not** the
493
+ # connection-level `id` from `/ai/integrations/connections`.
494
+ #
495
+ # @return [String]
496
+ required :integration_id, String
497
+
498
+ # @!attribute allowed_list
499
+ # Optional per-assistant allowlist of integration tool names. When omitted or
500
+ # empty, all tools allowed by the connected integration are available to the
501
+ # assistant.
502
+ #
503
+ # @return [Array<String>, nil]
504
+ optional :allowed_list, Telnyx::Internal::Type::ArrayOf[String]
505
+
506
+ # @!method initialize(integration_id:, allowed_list: nil)
507
+ # Some parameter documentations has been truncated, see
508
+ # {Telnyx::Models::AI::AssistantUpdateParams::Integration} for more details.
509
+ #
510
+ # Reference to a connected integration attached to an assistant. Discover
511
+ # available integrations with `/ai/integrations` and connected integrations with
512
+ # `/ai/integrations/connections`.
513
+ #
514
+ # @param integration_id [String] Catalog integration ID to attach. This is the `id` from the integrations catalog
515
+ #
516
+ # @param allowed_list [Array<String>] Optional per-assistant allowlist of integration tool names. When omitted or empt
517
+ end
518
+
519
+ class InterruptionSettings < Telnyx::Internal::Type::BaseModel
520
+ # @!attribute enable
521
+ # Whether users can interrupt the assistant while it is speaking.
522
+ #
523
+ # @return [Boolean, nil]
524
+ optional :enable, Telnyx::Internal::Type::Boolean
525
+
526
+ # @!attribute start_speaking_plan
527
+ # Controls when the assistant starts speaking after the user stops. These
528
+ # thresholds primarily apply to non turn-taking transcription models. For
529
+ # turn-taking models like `deepgram/flux`, end-of-turn detection is driven by the
530
+ # transcription end-of-turn settings under `transcription.settings` instead.
531
+ #
532
+ # @return [Telnyx::Models::AI::AssistantUpdateParams::InterruptionSettings::StartSpeakingPlan, nil]
533
+ optional :start_speaking_plan,
534
+ -> { Telnyx::AI::AssistantUpdateParams::InterruptionSettings::StartSpeakingPlan }
535
+
536
+ # @!method initialize(enable: nil, start_speaking_plan: nil)
537
+ # Some parameter documentations has been truncated, see
538
+ # {Telnyx::Models::AI::AssistantUpdateParams::InterruptionSettings} for more
539
+ # details.
540
+ #
541
+ # Settings for interruptions and how the assistant decides the user has finished
542
+ # speaking. These timings are most relevant when using non turn-taking
543
+ # transcription models. For turn-taking models like `deepgram/flux`, end-of-turn
544
+ # behavior is controlled by the transcription end-of-turn settings under
545
+ # `transcription.settings` (`eot_threshold`, `eot_timeout_ms`,
546
+ # `eager_eot_threshold`).
547
+ #
548
+ # @param enable [Boolean] Whether users can interrupt the assistant while it is speaking.
549
+ #
550
+ # @param start_speaking_plan [Telnyx::Models::AI::AssistantUpdateParams::InterruptionSettings::StartSpeakingPlan] Controls when the assistant starts speaking after the user stops. These threshol
551
+
552
+ # @see Telnyx::Models::AI::AssistantUpdateParams::InterruptionSettings#start_speaking_plan
553
+ class StartSpeakingPlan < Telnyx::Internal::Type::BaseModel
554
+ # @!attribute transcription_endpointing_plan
555
+ # Endpointing thresholds used to decide when the user has finished speaking.
556
+ # Applies to non turn-taking transcription models. For `deepgram/flux`, use
557
+ # `transcription.settings.eot_threshold` / `eot_timeout_ms` /
558
+ # `eager_eot_threshold`.
559
+ #
560
+ # @return [Telnyx::Models::AI::AssistantUpdateParams::InterruptionSettings::StartSpeakingPlan::TranscriptionEndpointingPlan, nil]
561
+ optional :transcription_endpointing_plan,
562
+ -> { Telnyx::AI::AssistantUpdateParams::InterruptionSettings::StartSpeakingPlan::TranscriptionEndpointingPlan }
563
+
564
+ # @!attribute wait_seconds
565
+ # Minimum seconds to wait before the assistant starts speaking.
566
+ #
567
+ # @return [Float, nil]
568
+ optional :wait_seconds, Float
569
+
570
+ # @!method initialize(transcription_endpointing_plan: nil, wait_seconds: nil)
571
+ # Some parameter documentations has been truncated, see
572
+ # {Telnyx::Models::AI::AssistantUpdateParams::InterruptionSettings::StartSpeakingPlan}
573
+ # for more details.
574
+ #
575
+ # Controls when the assistant starts speaking after the user stops. These
576
+ # thresholds primarily apply to non turn-taking transcription models. For
577
+ # turn-taking models like `deepgram/flux`, end-of-turn detection is driven by the
578
+ # transcription end-of-turn settings under `transcription.settings` instead.
579
+ #
580
+ # @param transcription_endpointing_plan [Telnyx::Models::AI::AssistantUpdateParams::InterruptionSettings::StartSpeakingPlan::TranscriptionEndpointingPlan] Endpointing thresholds used to decide when the user has finished speaking. Appli
581
+ #
582
+ # @param wait_seconds [Float] Minimum seconds to wait before the assistant starts speaking.
583
+
584
+ # @see Telnyx::Models::AI::AssistantUpdateParams::InterruptionSettings::StartSpeakingPlan#transcription_endpointing_plan
585
+ class TranscriptionEndpointingPlan < Telnyx::Internal::Type::BaseModel
586
+ # @!attribute on_no_punctuation_seconds
587
+ # Seconds to wait after the transcript ends without punctuation.
588
+ #
589
+ # @return [Float, nil]
590
+ optional :on_no_punctuation_seconds, Float
591
+
592
+ # @!attribute on_number_seconds
593
+ # Seconds to wait after the transcript ends with a number.
594
+ #
595
+ # @return [Float, nil]
596
+ optional :on_number_seconds, Float
597
+
598
+ # @!attribute on_punctuation_seconds
599
+ # Seconds to wait after the transcript ends with punctuation.
600
+ #
601
+ # @return [Float, nil]
602
+ optional :on_punctuation_seconds, Float
603
+
604
+ # @!method initialize(on_no_punctuation_seconds: nil, on_number_seconds: nil, on_punctuation_seconds: nil)
605
+ # Endpointing thresholds used to decide when the user has finished speaking.
606
+ # Applies to non turn-taking transcription models. For `deepgram/flux`, use
607
+ # `transcription.settings.eot_threshold` / `eot_timeout_ms` /
608
+ # `eager_eot_threshold`.
609
+ #
610
+ # @param on_no_punctuation_seconds [Float] Seconds to wait after the transcript ends without punctuation.
611
+ #
612
+ # @param on_number_seconds [Float] Seconds to wait after the transcript ends with a number.
613
+ #
614
+ # @param on_punctuation_seconds [Float] Seconds to wait after the transcript ends with punctuation.
615
+ end
616
+ end
617
+ end
618
+
619
+ class McpServer < Telnyx::Internal::Type::BaseModel
620
+ # @!attribute id
621
+ # ID of the MCP server to attach. This must be the `id` of an MCP server returned
622
+ # by the `/ai/mcp_servers` endpoints.
623
+ #
624
+ # @return [String]
625
+ required :id, String
626
+
627
+ # @!attribute allowed_tools
628
+ # Optional per-assistant allowlist of MCP tool names. When omitted, the assistant
629
+ # uses the MCP server's configured `allowed_tools`.
630
+ #
631
+ # @return [Array<String>, nil]
632
+ optional :allowed_tools, Telnyx::Internal::Type::ArrayOf[String]
633
+
634
+ # @!method initialize(id:, allowed_tools: nil)
635
+ # Some parameter documentations has been truncated, see
636
+ # {Telnyx::Models::AI::AssistantUpdateParams::McpServer} for more details.
637
+ #
638
+ # Reference to an MCP server attached to an assistant. Create and manage MCP
639
+ # servers with the `/ai/mcp_servers` endpoints, then attach them to assistants by
640
+ # ID.
641
+ #
642
+ # @param id [String] ID of the MCP server to attach. This must be the `id` of an MCP server returned
643
+ #
644
+ # @param allowed_tools [Array<String>] Optional per-assistant allowlist of MCP tool names. When omitted, the assistant
645
+ end
646
+
411
647
  class PostConversationSettings < Telnyx::Internal::Type::BaseModel
412
648
  # @!attribute enabled
413
649
  # Whether post-conversation processing is enabled. When true, the assistant will