diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-11-27 23:07:47 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-11-27 23:07:47 +0100 |
| commit | 37a381a0becb024437c04dee7687329325a0b2a3 (patch) | |
| tree | 21b0df1bea7fa20b7f3a2562b680c7076395fa85 /client | |
| parent | e06bdaa546b66d90d2346e588810d2490e7731aa (diff) | |
| download | jasper-client-37a381a0becb024437c04dee7687329325a0b2a3.tar.gz jasper-client-37a381a0becb024437c04dee7687329325a0b2a3.zip | |
Add a detailed docstring to ATandTSTT engine class
Diffstat (limited to 'client')
| -rw-r--r-- | client/stt.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/client/stt.py b/client/stt.py index 4316b53..fa960ce 100644 --- a/client/stt.py +++ b/client/stt.py @@ -251,6 +251,19 @@ class GoogleSTT(AbstractSTTEngine): class ATandTSTT(AbstractSTTEngine): + """ + Speech-To-Text implementation which relies on the AT&T Speech API. + + This implementation requires an AT&T app_key/app_secret to be present in + profile.yml. Please sign up at http://developer.att.com/apis/speech and + create a new app. You can then take the app_key/app_secret and put it into + your profile.yml: + ... + stt_engine: att + att-stt: + app_key: 4xxzd6abcdefghijklmnopqrstuvwxyz + app_secret: 6o5jgiabcdefghijklmnopqrstuvwxyz + """ SLUG = "att" |
