Skip to content

vito-ai/go-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RTZR STT SDK for golang

Go packages for RTZR STT API service.

Authorization

By default, each API will use RTZR CLIENT SECRET for authorization.

To make authorize, you should export variables,

export RTZR_CLIENT_ID="YOUR_CLIENT_ID"
export RTZR_CLIENT_SECRET="YOUR_CLIENT_SECRET"

This will allow your application to run without requiring configuration

client, err := speech.NewRestClient(nil)

or you can manually authorize in your code,

client, err := speech.NewRestClient(&option.ClientOption{
    ClientId : "YOUR_CLIENT_ID",
    ClientSecret : "YOUR_CLIENT_SECRET",
})

Examples

you can see examples of using RTZR STT SDK. rtzr-go-tutorial

About

RTZR STT SDK for golang

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages