|
99 | 99 | document_links, |
100 | 100 | ip_connections, |
101 | 101 | porting_orders, |
| 102 | + speech_to_text, |
102 | 103 | text_to_speech, |
103 | 104 | user_addresses, |
104 | 105 | advanced_orders, |
|
242 | 243 | from .resources.detail_records import DetailRecordsResource, AsyncDetailRecordsResource |
243 | 244 | from .resources.document_links import DocumentLinksResource, AsyncDocumentLinksResource |
244 | 245 | from .resources.ip_connections import IPConnectionsResource, AsyncIPConnectionsResource |
| 246 | + from .resources.speech_to_text import SpeechToTextResource, AsyncSpeechToTextResource |
245 | 247 | from .resources.text_to_speech import TextToSpeechResource, AsyncTextToSpeechResource |
246 | 248 | from .resources.user_addresses import UserAddressesResource, AsyncUserAddressesResource |
247 | 249 | from .resources.actions.actions import ActionsResource, AsyncActionsResource |
@@ -1667,6 +1669,13 @@ def uac_connections(self) -> UacConnectionsResource: |
1667 | 1669 |
|
1668 | 1670 | return UacConnectionsResource(self) |
1669 | 1671 |
|
| 1672 | + @cached_property |
| 1673 | + def speech_to_text(self) -> SpeechToTextResource: |
| 1674 | + """Discover available speech-to-text providers, models, and supported languages.""" |
| 1675 | + from .resources.speech_to_text import SpeechToTextResource |
| 1676 | + |
| 1677 | + return SpeechToTextResource(self) |
| 1678 | + |
1670 | 1679 | @cached_property |
1671 | 1680 | def voice_sdk_call_reports(self) -> VoiceSDKCallReportsResource: |
1672 | 1681 | """ |
@@ -3033,6 +3042,13 @@ def uac_connections(self) -> AsyncUacConnectionsResource: |
3033 | 3042 |
|
3034 | 3043 | return AsyncUacConnectionsResource(self) |
3035 | 3044 |
|
| 3045 | + @cached_property |
| 3046 | + def speech_to_text(self) -> AsyncSpeechToTextResource: |
| 3047 | + """Discover available speech-to-text providers, models, and supported languages.""" |
| 3048 | + from .resources.speech_to_text import AsyncSpeechToTextResource |
| 3049 | + |
| 3050 | + return AsyncSpeechToTextResource(self) |
| 3051 | + |
3036 | 3052 | @cached_property |
3037 | 3053 | def voice_sdk_call_reports(self) -> AsyncVoiceSDKCallReportsResource: |
3038 | 3054 | """ |
@@ -4335,6 +4351,13 @@ def uac_connections(self) -> uac_connections.UacConnectionsResourceWithRawRespon |
4335 | 4351 |
|
4336 | 4352 | return UacConnectionsResourceWithRawResponse(self._client.uac_connections) |
4337 | 4353 |
|
| 4354 | + @cached_property |
| 4355 | + def speech_to_text(self) -> speech_to_text.SpeechToTextResourceWithRawResponse: |
| 4356 | + """Discover available speech-to-text providers, models, and supported languages.""" |
| 4357 | + from .resources.speech_to_text import SpeechToTextResourceWithRawResponse |
| 4358 | + |
| 4359 | + return SpeechToTextResourceWithRawResponse(self._client.speech_to_text) |
| 4360 | + |
4338 | 4361 | @cached_property |
4339 | 4362 | def voice_sdk_call_reports(self) -> voice_sdk_call_reports.VoiceSDKCallReportsResourceWithRawResponse: |
4340 | 4363 | """ |
@@ -5508,6 +5531,13 @@ def uac_connections(self) -> uac_connections.AsyncUacConnectionsResourceWithRawR |
5508 | 5531 |
|
5509 | 5532 | return AsyncUacConnectionsResourceWithRawResponse(self._client.uac_connections) |
5510 | 5533 |
|
| 5534 | + @cached_property |
| 5535 | + def speech_to_text(self) -> speech_to_text.AsyncSpeechToTextResourceWithRawResponse: |
| 5536 | + """Discover available speech-to-text providers, models, and supported languages.""" |
| 5537 | + from .resources.speech_to_text import AsyncSpeechToTextResourceWithRawResponse |
| 5538 | + |
| 5539 | + return AsyncSpeechToTextResourceWithRawResponse(self._client.speech_to_text) |
| 5540 | + |
5511 | 5541 | @cached_property |
5512 | 5542 | def voice_sdk_call_reports(self) -> voice_sdk_call_reports.AsyncVoiceSDKCallReportsResourceWithRawResponse: |
5513 | 5543 | """ |
@@ -6683,6 +6713,13 @@ def uac_connections(self) -> uac_connections.UacConnectionsResourceWithStreaming |
6683 | 6713 |
|
6684 | 6714 | return UacConnectionsResourceWithStreamingResponse(self._client.uac_connections) |
6685 | 6715 |
|
| 6716 | + @cached_property |
| 6717 | + def speech_to_text(self) -> speech_to_text.SpeechToTextResourceWithStreamingResponse: |
| 6718 | + """Discover available speech-to-text providers, models, and supported languages.""" |
| 6719 | + from .resources.speech_to_text import SpeechToTextResourceWithStreamingResponse |
| 6720 | + |
| 6721 | + return SpeechToTextResourceWithStreamingResponse(self._client.speech_to_text) |
| 6722 | + |
6686 | 6723 | @cached_property |
6687 | 6724 | def voice_sdk_call_reports(self) -> voice_sdk_call_reports.VoiceSDKCallReportsResourceWithStreamingResponse: |
6688 | 6725 | """ |
@@ -7904,6 +7941,13 @@ def uac_connections(self) -> uac_connections.AsyncUacConnectionsResourceWithStre |
7904 | 7941 |
|
7905 | 7942 | return AsyncUacConnectionsResourceWithStreamingResponse(self._client.uac_connections) |
7906 | 7943 |
|
| 7944 | + @cached_property |
| 7945 | + def speech_to_text(self) -> speech_to_text.AsyncSpeechToTextResourceWithStreamingResponse: |
| 7946 | + """Discover available speech-to-text providers, models, and supported languages.""" |
| 7947 | + from .resources.speech_to_text import AsyncSpeechToTextResourceWithStreamingResponse |
| 7948 | + |
| 7949 | + return AsyncSpeechToTextResourceWithStreamingResponse(self._client.speech_to_text) |
| 7950 | + |
7907 | 7951 | @cached_property |
7908 | 7952 | def voice_sdk_call_reports(self) -> voice_sdk_call_reports.AsyncVoiceSDKCallReportsResourceWithStreamingResponse: |
7909 | 7953 | """ |
|
0 commit comments