├── .env.local ├── .gitignore ├── LICENSE.md ├── Procfile ├── README.md ├── ai-bot-demo.mov ├── app.json ├── index.js ├── package.json ├── public ├── css │ └── style.css ├── images │ └── geometry.png └── js │ └── script.js └── views └── index.html /.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/.env.local -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | node_modules 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/README.md -------------------------------------------------------------------------------- /ai-bot-demo.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/ai-bot-demo.mov -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/app.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/package.json -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/public/css/style.css -------------------------------------------------------------------------------- /public/images/geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/public/images/geometry.png -------------------------------------------------------------------------------- /public/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/public/js/script.js -------------------------------------------------------------------------------- /views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girliemac/web-speech-ai/HEAD/views/index.html --------------------------------------------------------------------------------