Skip to content

Commit

Permalink
added proper recognizer
Browse files Browse the repository at this point in the history
  • Loading branch information
joan-bookline committed Jul 13, 2023
1 parent 7e38f74 commit f6084e2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sample/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ def hello_world(request: Request) -> Any:
"input": ["speech"],
"timeout": 10,
"recognizer": {
"vendor": "Google",
"vendor": "google",
"language": "en-US",
},
"say": {
"text": "Thanks for your troubleshooting efforts",
"synthesizer": {
"vendor": "Google",
"vendor": "google",
"language": "en-US"
}
}
Expand All @@ -35,13 +35,13 @@ def hello_world(request: Request) -> Any:
"input": ["speech"],
"timeout": 10,
"recognizer": {
"vendor": "Google",
"vendor": "google",
"language": "en-US",
},
"say": {
"text": "This is the 2nd prompt",
"synthesizer": {
"vendor": "Google",
"vendor": "google",
"language": "en-US"
}
}
Expand All @@ -52,13 +52,13 @@ def hello_world(request: Request) -> Any:
"input": ["speech"],
"timeout": 10,
"recognizer": {
"vendor": "Google",
"vendor": "google",
"language": "en-US",
},
"say": {
"text": "This is the 3rd prompt",
"synthesizer": {
"vendor": "Google",
"vendor": "google",
"language": "en-US"
}
}
Expand Down

0 comments on commit f6084e2

Please sign in to comment.