-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
139 lines (129 loc) · 4.58 KB
/
app.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import playsound, speech_recognition as sr, random, os, openai
from gtts import gTTS
from datetime import datetime
from base64 import b64decode
from openai.error import InvalidRequestError
from PIL import Image
API_KEY = "YOUR_OPENAI_API_KEY"
openai.api_key = API_KEY
def speak(text):
tts = gTTS(text = text, lang = "tr")
dosya_ismi = "ses" + str(random.randint(0,999)) + ".mp3"
tts.save(dosya_ismi)
playsound.playsound(dosya_ismi)
os.remove(dosya_ismi)
def record(timeout):
rec = sr.Recognizer()
with sr.Microphone() as mic:
rec.adjust_for_ambient_noise(mic)
print("AI: Dinliyorum.. (" + str(timeout) + " saniye)")
sound = rec.listen(mic, phrase_time_limit=timeout)
print("AI: Süre Doldu")
tell = ""
try:
tell = rec.recognize_google(sound, language="Tr-tr")
if "Programı kapat" in tell:
exit()
except sr.WaitTimeoutError:
speak("Dinleme zaman aşımına uğradı")
except sr.UnknownValueError:
speak("Ne dediğini anlayamadım")
except sr.RequestError:
speak("İnternete bağlanamıyorum")
return tell
def generateImage(prompt, num_image=2, size="512x512", output_format="b64_json"):
"""
params:
propt (str):
num_image (int):
size (str):
output_format (str)
"""
try:
images = []
response = openai.Image.create(
prompt=prompt,
n=num_image,
size=size,
response_format=output_format
)
if output_format == "url":
for image in response["data"]:
images.append(image.url)
elif output_format == "b64_json":
for image in response["data"]:
images.append(image.b64_json)
return {"created": datetime.fromtimestamp(response["created"]), "images": images}
except InvalidRequestError as e:
print(e)
def createImage(text):
"""
params:
text (str):
"""
print("AI: " + text + " resmi oluşturuluyor...")
response = generateImage(text)
prefix = "aiApp"
image = response["images"][0]
file_name = f'{prefix}_{str(random.randint(0,999))}.jpg'
with open(file_name, "wb") as f:
f.write(b64decode(image))
image = Image.open(file_name)
image.show()
print("AI: Resim oluşturuldu!")
def completion(text):
print("İsteğiniz işleniyor...")
response = openai.Completion.create(
model="text-davinci-003",
prompt=text,
temperature=0.9,
max_tokens=150,
top_p=1,
frequency_penalty=0.0,
presence_penalty=0.6,
stop=[" Human:", " AI:"]
)
speak(response.choices[0].text)
print("AI: " + response.choices[0].text)
choice = ""
timeout = 5
while True:
if (choice == ""):
print("AI: Lütfen asistan veya resim diyerek seçim yapınız.")
speak("Lütfen asistan veya resim diyerek seçim yapınız.")
text = record(timeout)
print("Sen: " + text)
if "asistan" in text:
choice = "asistan"
if "resim" in text:
choice = "resim"
if "bekleme süresi" in text:
timeout = int(text.split("bekleme süresi")[1])
print("AI: Bekleme süresi '"+ str(timeout) + "' saniye olarak ayarlandı.")
else:
if (choice == "asistan"):
print("AI: Merhaba ben asistan, size nasıl yardımcı olabilirim?")
speak("Merhaba ben asistan, size nasıl yardımcı olabilirim?")
text = record(timeout)
print("Sen: " + text)
if len(text) > 0:
if "seçim değiştir" in text:
choice = ""
elif "bekleme süresi" in text:
timeout = int(text.split("bekleme süresi")[1])
print("AI: Bekleme süresi '"+ str(timeout) + "' saniye olarak ayarlandı.")
else:
completion(text)
else:
print("AI: Merhaba oluşturmak istediğin resmi anlatır mısın?")
speak("Merhaba oluşturmak istediğin resmi anlatır mısın?")
text = record(timeout)
print("Sen: " + text)
if len(text) > 0:
if "seçim değiştir" in text:
choice = ""
elif "bekleme süresi" in text:
timeout = int(text.split("bekleme süresi")[1])
print("AI: Bekleme süresi '"+ str(timeout) + "' saniye olarak ayarlandı.")
else:
createImage(text)