This repository is community-maintained. We gladly accept pull requests. Please see the Wit HTTP Reference for all supported endpoints.
Go client for wit.ai HTTP API.
go get -u github.com/wit-ai/wit-go/v2
package main
import (
"os"
"fmt"
witai "github.com/wit-ai/wit-go/v2"
)
func main() {
client := witai.NewClient(os.Getenv("WIT_AI_TOKEN"))
// Use client.SetHTTPClient() to set custom http.Client
msg, _ := client.Parse(&witai.MessageRequest{
Query: "hello",
})
fmt.Printf("%v", msg)
}
Both Unit / Integration tests are executed by Github Actions.
go test -race -v
Integration tests are connecting to real Wit.ai API, so you need to provide a valid token:
export WITAI_INTEGRATION_TOKEN=your_secret_token_here
go test -v -tags=integration
The license for wit-go can be found in LICENSE file in the root directory of this source tree.
Our terms of use can be found at https://opensource.facebook.com/legal/terms.
Our privacy policy can be found at https://opensource.facebook.com/legal/privacy.