Created
April 24, 2020 21:41
-
-
Save codemillmatt/7368e839aa9cd9c66c4fbdfaa1a5b8ad to your computer and use it in GitHub Desktop.
Creating an Azure Cognitive Services Speech Service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RESOURCE_GROUP_NAME = "PUT THE NAME OF YOUR RESOURCE GROUP HERE CALL IT WHATEVS" | |
SPEECH_SERVICE_NAME = "PUT THE NAME OF YOUR SPEECH SERVICE HERE THE NAME IS YOUR CHOICE" | |
az cognitiveservices account create -n $SPEECH_SERVICE_NAME -g $RESOURCE_GROUP_NAME --kind SpeechServices --sku F0 -l westus | |
az cognitiveservices account keys list -n $SPEECH_SERVICE_NAME -g $RESOURCE_GROUP_NAME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment