forked from Pushpak1203/jarvis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.py
191 lines (159 loc) · 6.39 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
from Frontend.GUI import (
GraphicalUserInterface,
SetAssistantStatus,
ShowTextToScreen,
TempDirectoryPath,
SetMicrophoneStatus,
AnswerModifier,
QueryModifier,
GetMicrophoneStatus,
GetAssistantStatus,
)
from Backend.Model import FirstLayerDMM
from Backend.RealTimeSearchEngine import RealTimeSearchEngine
from Backend.Automation import Automation
from Backend.SpeechToText import SpeechRecognition
from Backend.Chatbot import ChatBot
from Backend.TextToSpeech import TextToSpeech
from dotenv import dotenv_values
from asyncio import run
from time import sleep
import subprocess
import threading
import json
import os
env_vars = dotenv_values(".env")
Username = env_vars.get("Username")
Assistantname = env_vars.get("Assistantname")
DefaultMessage = f"""{Username}: Hello {Assistantname}, How are you?
{Assistantname}: Welcome {Username}, I am doing great, How can I help you?"""
subprocesses = []
Functions = ["open", "close", "play", "System", "content", "google search", "youtube search"]
def ShowDefaultChatIfNoChats():
File = open(r'Data\chatlog.json', "r", encoding="utf-8")
if len(File.read()) < 5:
with open(TempDirectoryPath('Database.data'), 'w', encoding='utf-8') as file:
file.write("")
with open(TempDirectoryPath('Responses.data'), 'w', encoding='utf-8') as file:
file.write("")
def ReadChatLogJson():
with open(r'Data\Chatlog.json', "r", encoding="utf-8") as File:
chatlog_data = json.load(File)
return chatlog_data
def ChatLogIntegration():
json_data = ReadChatLogJson()
formatted_chatlog = ""
for entry in json_data:
if entry["role"] == "user":
formatted_chatlog += f"{Username}: {entry['content']}\n"
elif entry["role"] == "assistant":
formatted_chatlog += f"Assistant: {entry['content']}\n"
formatted_chatlog = formatted_chatlog.replace("User", Username)
formatted_chatlog = formatted_chatlog.replace("Assistant", Assistantname)
with open(TempDirectoryPath('Database.data'), 'w', encoding='utf-8') as file:
file.write(AnswerModifier(formatted_chatlog))
def ShowChatsOnGUI():
File = open(TempDirectoryPath('Database.data'), 'r', encoding='utf-8')
Data = File.read()
if len(str(Data)) > 0:
lines = Data.split('\n')
result = '\n'.join(lines)
File.close()
File = open(TempDirectoryPath('Responses.data'), "w", encoding='utf-8')
File.write(result)
File.close()
def InitialExecution():
SetMicrophoneStatus("False")
ShowTextToScreen("")
ShowDefaultChatIfNoChats()
ChatLogIntegration()
ShowChatsOnGUI()
InitialExecution()
def MainExecution():
TaskExecution = False
ImageExecution = False
ImageGenerationQuery = ""
SetAssistantStatus("Listening...")
query = SpeechRecognition()
ShowTextToScreen(f"{Username}: {query}")
SetAssistantStatus("Thinking...")
Decision = FirstLayerDMM(query)
print("")
print(f"Decision: {Decision}")
print("")
G = any([i for i in Decision if i.startswith("general")])
R = any([i for i in Decision if i.startswith("realtime")])
Merged_query = " and ".join(
[" ".join(i.split()[1:]) for i in Decision if i.startswith("general") or i.startswith("realtime")]
)
for queries in Decision:
if "generate" in queries:
ImageGenerationQuery = str(queries)
ImageExecution = True
for queries in Decision:
if not TaskExecution:
if any(queries.startswith(func) for func in Functions):
run(Automation(list(Decision)))
TaskExecution = True
if ImageExecution:
with open(r"Frontend\Files\ImageGeneration.data", "w") as file:
file.write(f"{ImageGenerationQuery},True")
try:
p1 = subprocess.Popen(
["python", r'Backend\ImageGeneration.py'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
stdin=subprocess.PIPE, shell=False
)
subprocesses.append(p1)
except Exception as e:
print(f"Error Starting ImageGeneration.py: {e}")
if G and R or R:
SetAssistantStatus("Searching...")
Answer = RealTimeSearchEngine(QueryModifier(Merged_query))
ShowTextToScreen(f"{Assistantname}: {Answer}")
SetAssistantStatus("Answering...")
TextToSpeech(Answer)
return True
else:
for Queries in Decision:
if "general" in Queries:
SetAssistantStatus("Thinking...")
QueryFinal = Queries.replace("general", "")
Answer = ChatBot(QueryModifier(QueryFinal))
ShowTextToScreen(f"{Assistantname}: {Answer}")
SetAssistantStatus("Answering...")
TextToSpeech(Answer)
return True
elif "realtime" in Queries:
SetAssistantStatus("Searching...")
QueryFinal = Queries.replace("realtime", "")
Answer = RealTimeSearchEngine(QueryModifier(QueryFinal))
ShowTextToScreen(f"{Assistantname}: {Answer}")
SetAssistantStatus("Answering...")
TextToSpeech(Answer)
return True
elif "exit" in Queries:
QueryFinal = "Okay, Bye!"
Answer = ChatBot(QueryModifier(QueryFinal))
ShowTextToScreen(f"{Assistantname}: {Answer}")
SetAssistantStatus("Answering...")
TextToSpeech(Answer)
SetAssistantStatus("Answering...")
os._exit(1)
def FirstThread():
while True:
CurrentStatus = GetMicrophoneStatus()
if CurrentStatus == "True":
MainExecution()
else:
AIStatus = GetAssistantStatus()
if "Available..." in AIStatus:
sleep(0.1)
else:
SetAssistantStatus("Available...")
def SecondThread():
GraphicalUserInterface()
if __name__ == "__main__":
thread2 = threading.Thread(target=FirstThread, daemon=True)
thread2.start()
SecondThread()