Go SDK for Wit.AI
Installation and usage
$ export GOPATH=$(pwd)
$ export PATH=$PATH:$GOPATH/bin
$ go get github.com/michlabs/gowit/cmd/wit
$ wit help
$ wit train -t intent -i training.csv -token <your_wit_token>
$ wit test -t intent -i test.csv -token <your_wit_token>
training.csv and test.csv file must be a CSV file and in following format:
intent_name1, intent utterance 1
intent_name1, intent utterance 2
intent_name2, intent utterance 3
intent_name1, intent utterance 4
...