-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassistant.py
48 lines (36 loc) · 1.39 KB
/
assistant.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import speech_recognition as sr
import pyttsx3
def listen():
recognizer = sr.Recognizer()
with sr.Microphone() as source:
print("Слушаю...")
recognizer.adjust_for_ambient_noise(source)
audio = recognizer.listen(source)
try:
print("Распознавание...")
command = recognizer.recognize_google(audio, language="ru-RU").lower()
print(f"Вы сказали: {command}")
return command
except sr.UnknownValueError:
print("Речь не распознана")
return ""
except sr.RequestError as e:
print(f"Ошибка при запросе к сервису распознавания: {e}")
return ""
def speak(text):
engine = pyttsx3.init()
engine.say(text)
engine.runAndWait()
def assistant():
speak("Привет! Я ваш голосовой ассистент. Как я могу помочь вам сегодня?")
while True:
command = listen()
if "пока" in command:
speak("До свидания!")
break
elif "как дела" in command:
speak("У меня всё отлично, спасибо!")
else:
speak("Извините, я не могу выполнить эту команду. Пожалуйста, повторите.")
if __name__ == "__main__":
assistant()