An Azure AI powered text editor
It uses the Azure Text Analytics AI module and the Azure Speech Recognition module
Before anything, make sure you have your Azure keys in creds.js as the variables endpoint
and key
An example creds.js file:
const creds = {
key: "12a34b56c78d910e", // this will have 32 characters
endpoint: "https://my-awesome-demo.cognitiveservices.azure.com/"
};
exports.creds = creds;
- clone the repo with
git clone https://github.com/filiptronicek/ai-speech/
- cd in the repo with
cd ai-speech
- install the dependencies with
npm i
- start the server with
npm start
, and you are all set, the app is running on localhost:5000