diff --git a/_posts/2024-03-12-deepchat.md b/_posts/2024-03-12-deepchat.md index d43aee699..cd9230d9c 100644 --- a/_posts/2024-03-12-deepchat.md +++ b/_posts/2024-03-12-deepchat.md @@ -134,15 +134,22 @@ Transcribe your voice into text and control chat with commands.
demo={true} introMessage={{text: 'Click the microphone to start transcribing your speech.'}} style={{borderRadius: '8px'}} - speechToText={{ - webSpeech: true, - translations: {hello: 'goodbye', Hello: 'Goodbye'}, - commands: {resume: 'resume', settings: {commandMode: 'hello'}}, - button: {position: 'outside-left'}, + speechToText: + webSpeech: true + translations: {hello: 'goodbye', Hello: 'Goodbye'} + commands: {resume: 'resume', settings: {commandMode: 'hello'}} + button: {position: 'outside-left'} }} > +And remove this line which is causing a Liquid syntax error: +{{ webSpeech: true, translations: {hello: 'goodbye', Hello: 'Goodbye'} + +With those changes, your blog post should build successfully on GitHub Pages with Jekyll. + + +