Azure speech
AzureSpeechToolSpec #
Bases: BaseToolSpec
Azure语音工具规范。
Source code in llama_index/tools/azure_speech/base.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|
text_to_speech #
text_to_speech(text: str) -> None
这个工具接受自然语言字符串,并将使用Azure语音服务来创建文本的音频版本,并在用户的计算机上播放它。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text |
str
|
要播放的文本 |
required |
Source code in llama_index/tools/azure_speech/base.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
speech_to_text #
speech_to_text(filename: str) -> List[str]
这个工具接受一个演讲音频文件的文件名,并使用Azure将其转录为文本。
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename |
str
|
要转录的文件名 |
required |
Source code in llama_index/tools/azure_speech/base.py
69 70 71 72 73 74 75 76 77 78 79 80 81 |
|