Azure speech
AzureSpeechToolSpec #
Bases: BaseToolSpec
Azure Speech tool spec.
Source code in llama-index-integrations/tools/llama-index-tools-azure-speech/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 82 83 84 |
|
text_to_speech #
text_to_speech(text: str) -> None
This tool accepts a natural language string and will use Azure speech services to create an audio version of the text, and play it on the users computer.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text
|
str
|
The text to play |
required |
Source code in llama-index-integrations/tools/llama-index-tools-azure-speech/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 45 46 |
|
speech_to_text #
speech_to_text(filename: str) -> List[str]
This tool accepts a filename for a speech audio file and uses Azure to transcribe it into text.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename
|
str
|
The name of the file to transcribe |
required |
Source code in llama-index-integrations/tools/llama-index-tools-azure-speech/llama_index/tools/azure_speech/base.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
|