kahy9 / ai-speech

An Azure AI powered text editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AI Speech

An Azure AI powered text editor

It uses the Azure Text Analytics AI module and the Azure Speech Recognition module

Setup

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;
  1. clone the repo with git clone https://github.com/filiptronicek/ai-speech/
  2. cd in the repo with cd ai-speech
  3. install the dependencies with npm i
  4. start the server with npm start, and you are all set, the app is running on localhost:5000

About

An Azure AI powered text editor

License:MIT License


Languages

Language:JavaScript 61.5%Language:HTML 38.5%