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

add voice feature #90

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
48 changes: 48 additions & 0 deletions examples/mimic-bot-adv/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
from textbase import bot, Message
from typing import List
import pyttsx3




def speak(text):
kushalkd14 marked this conversation as resolved.
Show resolved Hide resolved
engine = pyttsx3.init('sapi5')

try:
pass
engine.say(text)
engine.startLoop(True)

except:
pass
engine.stop()






@bot()
def on_message(message_history: List[Message], state: dict = None):

# Mimic user's response
bot_response = []
bot_response = message_history[-1]["content"]
mylist=[]+message_history[-1]["content"]
response = {
"data": {
"messages": bot_response,
"state": state,
"speak": speak(mylist[0]["value"])
},
"errors": [
{
"message": ""
}
]
}

return {
"status_code": 200,
"response": response
}