# Packages
No description provided by the author
# README
About
This is an example client implementation written in GO to access the CyberVox platform API.
For more information, read the API documentation.
Getting Started
To run the example implementation:
export CLIENT_ID=< provided client id >
export CLIENT_SECRET=< provided client secret >
# complete API
go run cmd/example/main.go
# text-to-speech only
go run cmd/tts/main.go "olá mundo"
# speech-to-text only
go run cmd/stt/main.go ola-mundo.wav
Usage
go doc -all