|
89 | 89 | from ....types.ai.telephony_settings_param import TelephonySettingsParam |
90 | 90 | from ....types.ai.assistant_delete_response import AssistantDeleteResponse |
91 | 91 | from ....types.ai.fallback_config_req_param import FallbackConfigReqParam |
92 | | -from ....types.ai.assistant_mcp_server_param import AssistantMcpServerParam |
93 | | -from ....types.ai.assistant_integration_param import AssistantIntegrationParam |
94 | 92 | from ....types.ai.assistant_send_sms_response import AssistantSendSMSResponse |
95 | 93 | from ....types.ai.transcription_settings_param import TranscriptionSettingsParam |
96 | 94 | from ....types.ai.post_conversation_settings_req_param import PostConversationSettingsReqParam |
97 | | -from ....types.ai.inference_embedding_interruption_settings_param import InferenceEmbeddingInterruptionSettingsParam |
98 | 95 |
|
99 | 96 | __all__ = ["AssistantsResource", "AsyncAssistantsResource"] |
100 | 97 |
|
@@ -165,10 +162,10 @@ def create( |
165 | 162 | fallback_config: FallbackConfigReqParam | Omit = omit, |
166 | 163 | greeting: str | Omit = omit, |
167 | 164 | insight_settings: InsightSettingsParam | Omit = omit, |
168 | | - integrations: Iterable[AssistantIntegrationParam] | Omit = omit, |
169 | | - interruption_settings: InferenceEmbeddingInterruptionSettingsParam | Omit = omit, |
| 165 | + integrations: Iterable[assistant_create_params.Integration] | Omit = omit, |
| 166 | + interruption_settings: assistant_create_params.InterruptionSettings | Omit = omit, |
170 | 167 | llm_api_key_ref: str | Omit = omit, |
171 | | - mcp_servers: Iterable[AssistantMcpServerParam] | Omit = omit, |
| 168 | + mcp_servers: Iterable[assistant_create_params.McpServer] | Omit = omit, |
172 | 169 | messaging_settings: MessagingSettingsParam | Omit = omit, |
173 | 170 | model: str | Omit = omit, |
174 | 171 | observability_settings: ObservabilityReqParam | Omit = omit, |
@@ -376,10 +373,10 @@ def update( |
376 | 373 | greeting: str | Omit = omit, |
377 | 374 | insight_settings: InsightSettingsParam | Omit = omit, |
378 | 375 | instructions: str | Omit = omit, |
379 | | - integrations: Iterable[AssistantIntegrationParam] | Omit = omit, |
380 | | - interruption_settings: InferenceEmbeddingInterruptionSettingsParam | Omit = omit, |
| 376 | + integrations: Iterable[assistant_update_params.Integration] | Omit = omit, |
| 377 | + interruption_settings: assistant_update_params.InterruptionSettings | Omit = omit, |
381 | 378 | llm_api_key_ref: str | Omit = omit, |
382 | | - mcp_servers: Iterable[AssistantMcpServerParam] | Omit = omit, |
| 379 | + mcp_servers: Iterable[assistant_update_params.McpServer] | Omit = omit, |
383 | 380 | messaging_settings: MessagingSettingsParam | Omit = omit, |
384 | 381 | model: str | Omit = omit, |
385 | 382 | name: str | Omit = omit, |
@@ -890,10 +887,10 @@ async def create( |
890 | 887 | fallback_config: FallbackConfigReqParam | Omit = omit, |
891 | 888 | greeting: str | Omit = omit, |
892 | 889 | insight_settings: InsightSettingsParam | Omit = omit, |
893 | | - integrations: Iterable[AssistantIntegrationParam] | Omit = omit, |
894 | | - interruption_settings: InferenceEmbeddingInterruptionSettingsParam | Omit = omit, |
| 890 | + integrations: Iterable[assistant_create_params.Integration] | Omit = omit, |
| 891 | + interruption_settings: assistant_create_params.InterruptionSettings | Omit = omit, |
895 | 892 | llm_api_key_ref: str | Omit = omit, |
896 | | - mcp_servers: Iterable[AssistantMcpServerParam] | Omit = omit, |
| 893 | + mcp_servers: Iterable[assistant_create_params.McpServer] | Omit = omit, |
897 | 894 | messaging_settings: MessagingSettingsParam | Omit = omit, |
898 | 895 | model: str | Omit = omit, |
899 | 896 | observability_settings: ObservabilityReqParam | Omit = omit, |
@@ -1101,10 +1098,10 @@ async def update( |
1101 | 1098 | greeting: str | Omit = omit, |
1102 | 1099 | insight_settings: InsightSettingsParam | Omit = omit, |
1103 | 1100 | instructions: str | Omit = omit, |
1104 | | - integrations: Iterable[AssistantIntegrationParam] | Omit = omit, |
1105 | | - interruption_settings: InferenceEmbeddingInterruptionSettingsParam | Omit = omit, |
| 1101 | + integrations: Iterable[assistant_update_params.Integration] | Omit = omit, |
| 1102 | + interruption_settings: assistant_update_params.InterruptionSettings | Omit = omit, |
1106 | 1103 | llm_api_key_ref: str | Omit = omit, |
1107 | | - mcp_servers: Iterable[AssistantMcpServerParam] | Omit = omit, |
| 1104 | + mcp_servers: Iterable[assistant_update_params.McpServer] | Omit = omit, |
1108 | 1105 | messaging_settings: MessagingSettingsParam | Omit = omit, |
1109 | 1106 | model: str | Omit = omit, |
1110 | 1107 | name: str | Omit = omit, |
|
0 commit comments