-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathassistant.py
234 lines (185 loc) · 7.38 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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
from langchain_core.messages import HumanMessage, SystemMessage, AIMessage
from .chat_history import *
from .agent import *
try:
from ..screen.shot import *
from ..utils.db import load_model_settings, agents
from ..llm import get_model
from ..llm_settings import each_message_extension, llm_settings
except ImportError:
from screen.shot import *
from utils.db import load_model_settings, agents
from llm import get_model
from llm_settings import each_message_extension, llm_settings
config = {"configurable": {"thread_id": "abc123"}}
def agentic(
llm_input, llm_history, client, screenshot_path=None, dont_save_image=False
):
global agents
from crewai import Task, Crew
from crewai import Agent as crewai_Agent
the_agents = []
for each in agents:
the_agents.append(
crewai_Agent(
role=each["role"],
goal=each["goal"],
backstory=each["backstory"],
llm=get_model(high_context=True),
)
)
agents = the_agents
print("LLM INPUT", llm_input)
def image_explaination():
the_message = [
{"type": "text", "text": "Explain the image"},
]
if screenshot_path:
base64_image = encode_image(screenshot_path)
the_message.append(
{
"type": "image_url",
"image_url": {"url": f"data:image/jpeg;base64,{base64_image}"},
},
)
print("LEN OF İMAGE", len(base64_image))
the_message = HumanMessage(content=the_message)
get_chat_message_history().add_message(the_message)
the_model = load_model_settings()
if (
llm_settings[the_model]["provider"] == "openai"
and llm_settings[the_model]["provider"] == "ollama"
):
msg = get_agent_executor().invoke(
{"messages": llm_history + [the_message]}, config=config
)
if llm_settings[the_model]["provider"] == "google":
msg = get_agent_executor().invoke(
{"messages": llm_history + [the_message]}, config=config
)
the_last_messages = msg["messages"]
return the_last_messages[-1].content
if screenshot_path:
image_explain = image_explaination()
llm_input += "User Sent Image and image content is: " + image_explain
llm_input = llm_input + each_message_extension
task = Task(
description=llm_input,
expected_output="Answer",
agent=agents[0],
tools=get_tools(),
)
the_crew = Crew(
agents=agents,
tasks=[task],
full_output=True,
verbose=True,
)
result = the_crew.kickoff()["final_output"]
get_chat_message_history().add_message(
HumanMessage(content=[llm_input.replace(each_message_extension, "")])
)
get_chat_message_history().add_message(AIMessage(content=[result]))
return result
def assistant(
llm_input, llm_history, client, screenshot_path=None, dont_save_image=False
):
the_model = load_model_settings()
if len(agents) != 0:
print("Moving to Agentic")
return agentic(llm_input, llm_history, client, screenshot_path, dont_save_image)
print("LLM INPUT", llm_input)
if llm_settings[the_model]["tools"]:
llm_input = llm_input + each_message_extension
the_message = [
{"type": "text", "text": f"{llm_input}"},
]
if screenshot_path:
base64_image = encode_image(screenshot_path)
if llm_settings[the_model]["provider"] == "ollama":
the_message.append(
{
"type": "image_url",
"image_url": base64_image,
},
)
else:
the_message.append(
{
"type": "image_url",
"image_url": {"url": f"data:image/jpeg;base64,{base64_image}"},
},
)
print("LEN OF IMAGE", len(base64_image))
the_message = HumanMessage(content=the_message)
get_chat_message_history().add_message(the_message)
if (
llm_settings[the_model]["provider"] == "openai"
or llm_settings[the_model]["provider"] == "ollama"
):
msg = get_agent_executor().invoke(
{"messages": llm_history + [the_message]}, config=config
)
if llm_settings[the_model]["provider"] == "google":
the_history = []
for message in llm_history:
try:
if isinstance(message, SystemMessage):
the_mes = HumanMessage(content=message.content[0]["text"])
the_history.append(the_mes)
elif isinstance(message, HumanMessage):
the_mes = HumanMessage(content=message.content[0]["text"])
the_history.append(the_mes)
else:
the_mes = AIMessage(content=message.content[0]["text"])
the_history.append(the_mes)
except:
the_mes = AIMessage(content=message.content)
the_history.append(the_mes)
the_last_message = HumanMessage(content=llm_input)
msg = get_agent_executor().invoke(
{"messages": the_history + [the_last_message]}, config=config
)
elif llm_settings[the_model]["provider"] == "groq":
the_history = []
for message in llm_history:
try:
if isinstance(message, SystemMessage):
the_mes = SystemMessage(content=message.content[0]["text"])
the_history.append(the_mes)
elif isinstance(message, HumanMessage):
the_mes = HumanMessage(content=message.content[0]["text"])
the_history.append(the_mes)
else:
the_mes = AIMessage(content=message.content[0]["text"])
the_history.append(the_mes)
except:
the_mes = AIMessage(content=message.content)
the_history.append(the_mes)
the_last_message = HumanMessage(content=llm_input)
msg = get_agent_executor().invoke(
{"messages": the_history + [the_last_message]}, config=config
)
the_last_messages = msg["messages"]
if dont_save_image and screenshot_path is not None:
currently_messages = get_chat_message_history().messages
last_message = currently_messages[-1].content[0]
currently_messages.remove(currently_messages[-1])
get_chat_message_history().clear()
for message in currently_messages:
get_chat_message_history().add_message(message)
get_chat_message_history().add_message(HumanMessage(content=[last_message]))
get_chat_message_history().add_message(the_last_messages[-1])
# Replace each_message_extension with empty string
list_of_messages = get_chat_message_history().messages
get_chat_message_history().clear()
for message in list_of_messages:
try:
message.content[0]["text"] = message.content[0]["text"].replace(
each_message_extension, ""
)
get_chat_message_history().add_message(message)
except:
get_chat_message_history().add_message(message)
print("The return", the_last_messages[-1].content)
return the_last_messages[-1].content