-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
67 lines (54 loc) · 2.04 KB
/
main.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import openai
import pyttsx3
import speech_recognition as sr
import time
openai.api_key = "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"
engine = pyttsx3.init()
def transcribe_audio_to_text(filename):
recognizer = sr.Recognizer()
with sr.AudioFile(filename) as source:
audio = recognizer.record(source)
try:
return recognizer.recognize_google(audio)
except:
print('Skipping unknown error')
def generate_response(prompt):
response = openai.Completion.create(
engine="text-davinci-003",
prompt=prompt,
max_tokens=4000,
n=1,
stop=None,
temperature=0.5,
)
return response["choices"][0]["text"]
def speak_test(test):
engine.say(test)
engine.runAndWait()
def main():
while True:
print("Say 'Genius' to start recording your question...")
with sr.Microphone() as source:
recognizer = sr.Recognizer()
audio = recognizer.listen(source)
try:
transcription = recognizer.recognize_google(audio)
if transcription.lower() == "genius":
filename = "input.wav"
print("Say your question... ")
with sr.Microphone() as source:
recognizer = sr.Recognizer()
source.pause_threshold = 1
audio = recognizer.listen(source, phrase_time_limit=None, timeout=None)
with open(filename, "wb") as f:
f.write(audio.get_wav_data())
text = transcribe_audio_to_text(filename)
if text:
print(f"You said: {text}")
response = generate_response(text)
print(f"GPT-3 says: {response}")
speak_test(response)
except Exception as e:
print("An error occurred: {}".format(e))
if __name__ == "__main__":
main()