Voice Coder – Alexa skill to code by voice
voicecoder.net
Voice Coder – Alexa skill to code by voice
1–10 of 45 posts
Re: Voice Coder – Alexa skill to code by voice
#2it would be awesome to do this on a raspi, without requiring internet connection!
Re: Voice Coder – Alexa skill to code by voice
#3Re: Voice Coder – Alexa skill to code by voice
#4Really cool! Perhaps you could also take a look at what we are building at https://snips.ai (disclaimer: I'm a co-founder) to make a 100% on-device and private-by-design Voice AI which runs even on a RaspberryPi 3 it would be awesome to do this on a raspi, without requiring internet connection!
The way I built it should be easy to use another voice ai input. The Alexa module of the code just passes the commands to the Core logic. It's all built in node.js.
I built this for Alexa Skills Challenge: Tech for Good. https://devpost.com/software/code-by-voice . More details about how it was built can be found there.
Re: Voice Coder – Alexa skill to code by voice
#5Re: Voice Coder – Alexa skill to code by voice
#6Seems like the skill needs a lot of semantic knowledge. This is less coding than a meta game.
A game template looks something like this: https://gist.github.com/jamesfdickinson/65b9f5a05f4902468c46...
Re: Voice Coder – Alexa skill to code by voice
#7Re: Voice Coder – Alexa skill to code by voice
#8What’s the IP status of recordings sent to Amazon? Might that affect the IP of the code produced?
Re: Voice Coder – Alexa skill to code by voice
#9Seems like the skill needs a lot of semantic knowledge. This is less coding than a meta game.
Re: Voice Coder – Alexa skill to code by voice
#10Seems like the skill needs a lot of semantic knowledge. This is less coding than a meta game.
The game template supplies the available events/action/value. The Game Creator guides you through the available options supplied by the template. It then tries to use a human speech like interface to receive the input, the game logic. Currently there is only one game template. Each new game template would need to supply it's own possible events/actions/values to suit it's needs. A game template looks something like t…