Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chapter 7: Fix typo in voice-assistant.mdx #163

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chapters/en/chapter7/voice-assistant.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def transcribe(chunk_length_s=5.0, stream_chunk_s=1.0):
if not item["partial"][0]:
break

return item["text"]
return item["text"]
```

Let's give this a go and see how we get on! Once the microphone is live, start speaking and watch your transcription
Expand Down