little update
This commit is contained in:
parent
f82ad437f6
commit
184f40da1f
|
@ -1,7 +1,9 @@
|
||||||
#!/bin/python
|
|
||||||
import speech_recognition as sr
|
import speech_recognition as sr
|
||||||
import pyttsx3
|
import pyttsx3
|
||||||
from process_text import process_text
|
from process_text import process_text
|
||||||
|
|
||||||
|
print("HELLOOOO")
|
||||||
|
|
||||||
botname = "андрей"
|
botname = "андрей"
|
||||||
text = 'какой-нибудь текст'
|
text = 'какой-нибудь текст'
|
||||||
tts = pyttsx3.init()
|
tts = pyttsx3.init()
|
||||||
|
@ -26,7 +28,7 @@ def say(text):
|
||||||
tts.runAndWait()
|
tts.runAndWait()
|
||||||
def process_speech(text):
|
def process_speech(text):
|
||||||
#if (text.find("слушай " + botname)):
|
#if (text.find("слушай " + botname)):
|
||||||
# say("Привет сучка, что тебе надо?")
|
# say("Привет, что тебе надо?")
|
||||||
# else:
|
# else:
|
||||||
say(text)
|
say(text)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue