scalableminds / chatroom

React-based Chatroom Component for Rasa Stack
https://npm-scalableminds.s3.eu-central-1.amazonaws.com/@scalableminds/chatroom@master/demo.html
GNU Affero General Public License v3.0
307 stars 208 forks source link

[Question] Configuration list? #136

Closed varun-d closed 4 years ago

varun-d commented 4 years ago

Wondering if there's a configuration list somewhere? For example, config to turn off TTS?

varun-d commented 4 years ago

My bad, it's right there on index.html.

Comment out speechRec and voiceLang.

window.chatroom = new window.Chatroom({
  title: "Test Bot",
  container: document.querySelector(".chat-container"),
  welcomeMessage: "Hi, this is custom welcome message.",
  host: "http://localhost:5005",
  // speechRecognition: "en-US",
  // voiceLang: "en-US"
});