Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 517 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 517 Bytes

gowit

Go SDK for Wit.AI

wit CLI

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
...