-
Notifications
You must be signed in to change notification settings - Fork 1
/
helper.py
488 lines (434 loc) · 22.5 KB
/
helper.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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
import warnings
warnings.filterwarnings("ignore", message=".*TqdmWarning.*")
from dotenv import load_dotenv
_ = load_dotenv()
# General Imports
from langgraph.graph import StateGraph, END
from typing import TypedDict, Annotated, List
from langgraph.checkpoint.sqlite import SqliteSaver
from langchain_core.messages import AnyMessage, SystemMessage, HumanMessage, AIMessage, ChatMessage
from langchain_core.pydantic_v1 import BaseModel
from tavily import TavilyClient
import os
# LLM model import
from langchain_anthropic import ChatAnthropic
import operator
import sqlite3
import gradio as gr
import time
class AgentState(TypedDict):
task: str
lnode: str
plan: str
draft: str
critique: str
answers: List[str]
queries: List[str]
revision_number: int
max_revisions: int
count: Annotated[int, operator.add]
class Queries(BaseModel):
queries: List[str]
class ewriter():
def __init__(self):
self.model = ChatAnthropic(model="claude-3-haiku-20240307")
self.VACATION_PLANNING_SUPERVISOR_PROMPT="""You are the vacation planning supervisor. You have to give an outline of what the planning agent \
has to consider when planning the vacation according to the user input."""
self.PLANNER_ASSISTANT_PROMPT = """You are an assistant charged with providing information that can be used by the planner to plan the vacation.
Generate a list of search queries that will be useful for the planner. Generate a maximum of 3 queries."""
self.VACATION_PLANNER_PROMPT = """You are an expert vacation planner tasked with suggesting vacation itineraries.
You will provide the user with a suggestion of a vacation spot based on the outline and research.
If the user provides tweeks or changes respond with updated versions of the itenaries.
Always output a detailed daily itenary in the following format even after integrating the suggestions.:
------
Place:
Dates:
Estimated spending: xx USD
Mode of commute from <Origin>: yy
Estimated time to reach <Destination>: zzz Hrs vv Minutes
Itenary:
Day 1: <DATE>
- Things the user can do.
- Things the user can do.
- Things the user can do.
Day 2: <DATE>
- Things the user can do.
- Things the user can do.
- Things the user can do.
------
Utilize the information below as needed:
------
{answers}
"""
self.PLANNER_CRITIQUE_PROMPT = """Your duty is to criticize the planning done by the vacation planner.
In your response include if you agree with options presented by the planner, if not then give detailed suggestions on what should be changed.
You can also suggest some other destination that should be checked out.
"""
self.PLANNER_CRITIQUE_ASSISTANT_PROMPT = """You are a assistant charged with providing information that can be used to make any requested revisions.
Generate a list of search queries that will gather any relevent information. Only generate 3 queries max.
You should consider the queries and answers that were previoulsy used:
QUERIES:
{queries}
ANSWERS:
{answers}
"""
self.tavily = TavilyClient(api_key=os.environ["TAVILY_API_KEY"])
builder = StateGraph(AgentState)
builder.add_node("planner", self.plan_node)
builder.add_node("research_plan", self.research_plan_node)
builder.add_node("generate", self.generation_node)
builder.add_node("reflect", self.reflection_node)
builder.add_node("research_critique", self.research_critique_node)
builder.set_entry_point("planner")
builder.add_conditional_edges(
"generate",
self.should_continue,
{END: END, "reflect": "reflect"}
)
builder.add_edge("planner", "research_plan")
builder.add_edge("research_plan", "generate")
builder.add_edge("reflect", "research_critique")
builder.add_edge("research_critique", "generate")
memory = SqliteSaver(conn=sqlite3.connect(":memory:", check_same_thread=False))
# self.graph = builder.compile(
# checkpointer=memory,
# interrupt_after=['planner', 'generate', 'reflect', 'research_plan', 'research_critique']
# )
self.graph = builder.compile(
checkpointer=memory,
)
def plan_node(self, state: AgentState):
messages = [
SystemMessage(content=self.VACATION_PLANNING_SUPERVISOR_PROMPT),
HumanMessage(content=state['task'])
]
response = self.model.invoke(messages)
return {
"plan": response.content,
"lnode": "planner",
"count": 1,
}
def research_plan_node(self, state: AgentState):
queries = self.model.with_structured_output(Queries).invoke([
SystemMessage(content=self.PLANNER_ASSISTANT_PROMPT),
HumanMessage(content=state['plan'])
])
answers = state['answers'] or []
for q in queries.queries:
response = self.tavily.search(query=q, max_results=2)
for r in response['results']:
answers.append(r['content'])
return {
"answers": answers,
"queries": queries.queries,
"lnode": "research_plan",
"count": 1,
}
def generation_node(self, state: AgentState):
answers = "\n\n".join(state['answers'] or [])
user_message = HumanMessage(
content=f"{state['task']}\n\nHere is my plan:\n\n{state['plan']}")
messages = [
SystemMessage(content=self.VACATION_PLANNER_PROMPT.format(answers=answers)),
user_message
]
response = self.model.invoke(messages)
return {
"draft": response.content,
"revision_number": state.get("revision_number", 1) + 1,
"lnode": "generate",
"count": 1,
}
def reflection_node(self, state: AgentState):
messages = [
SystemMessage(content=self.PLANNER_CRITIQUE_PROMPT),
HumanMessage(content=state['draft'])
]
response = self.model.invoke(messages)
return {
"critique": response.content,
"lnode": "reflect",
"count": 1,
}
def research_critique_node(self, state: AgentState):
pastQueries = state['queries'] or []
answers = state['answers'] or []
queries = self.model.with_structured_output(Queries).invoke([
SystemMessage(content=self.PLANNER_CRITIQUE_ASSISTANT_PROMPT.format(queries=pastQueries, answers=answers)),
HumanMessage(content=state['critique'])
])
for q in queries.queries:
pastQueries.append(q)
response = self.tavily.search(query=q, max_results=2)
for r in response['results']:
answers.append(r['content'])
return {
"queries": pastQueries,
"answers": answers,
"lnode": "research_critique",
"count": 1,
}
def should_continue(self, state):
if state["revision_number"] > state["max_revisions"]:
return END
return "reflect"
class writer_gui( ):
def __init__(self, graph, share=False):
self.graph = graph
self.share = share
self.partial_message = ""
self.response = {}
self.max_iterations = 2
self.iterations = []
self.threads = []
self.thread_id = -1
self.thread = {"configurable": {"thread_id": str(self.thread_id)}}
#self.sdisps = {} #global
self.demo = self.create_interface()
def run_agent(self, start,topic,stop_after):
#global partial_message, thread_id,thread
#global response, max_iterations, iterations, threads
if start:
self.iterations.append(0)
config = {'task': topic,"max_revisions": 2,"revision_number": 0,
'lnode': "", 'planner': "no plan", 'draft': "no draft", 'critique': "no critique",
'content': ["no content",], 'queries': "no queries", 'count':0}
self.thread_id += 1 # new agent, new thread
self.threads.append(self.thread_id)
else:
config = None
self.thread = {"configurable": {"thread_id": str(self.thread_id)}}
while self.iterations[self.thread_id] < self.max_iterations:
self.response = self.graph.invoke(config, self.thread)
self.iterations[self.thread_id] += 1
self.partial_message += str(self.response)
self.partial_message += f"\n------------------\n\n"
## fix
lnode,nnode,_,rev,acount = self.get_disp_state()
yield self.partial_message,lnode,nnode,self.thread_id,rev,acount
config = None #need
#print(f"run_agent:{lnode}")
if not nnode:
#print("Hit the end")
return
if lnode in stop_after:
#print(f"stopping due to stop_after {lnode}")
return
else:
#print(f"Not stopping on lnode {lnode}")
pass
return
def get_disp_state(self,):
current_state = self.graph.get_state(self.thread)
lnode = current_state.values["lnode"]
acount = current_state.values["count"]
rev = current_state.values["revision_number"]
nnode = current_state.next
#print (lnode,nnode,self.thread_id,rev,acount)
return lnode,nnode,self.thread_id,rev,acount
def get_state(self,key):
current_values = self.graph.get_state(self.thread)
if key in current_values.values:
lnode,nnode,self.thread_id,rev,astep = self.get_disp_state()
new_label = f"last_node: {lnode}, thread_id: {self.thread_id}, rev: {rev}, step: {astep}"
return gr.update(label=new_label, value=current_values.values[key])
else:
return ""
def get_content(self,):
current_values = self.graph.get_state(self.thread)
if "answers" in current_values.values:
answers = current_values.values["answers"]
lnode,nnode,thread_id,rev,astep = self.get_disp_state()
new_label = f"last_node: {lnode}, thread_id: {self.thread_id}, rev: {rev}, step: {astep}"
return gr.update(label=new_label, value="\n\n".join(item for item in answers) + "\n\n")
else:
return "No Content"
def update_hist_pd(self,):
#print("update_hist_pd")
hist = []
# curiously, this generator returns the latest first
for state in self.graph.get_state_history(self.thread):
if state.metadata['step'] < 1:
continue
thread_ts = state.config['configurable']['thread_ts']
tid = state.config['configurable']['thread_id']
count = state.values['count']
lnode = state.values['lnode']
rev = state.values['revision_number']
nnode = state.next
st = f"{tid}:{count}:{lnode}:{nnode}:{rev}:{thread_ts}"
hist.append(st)
return gr.Dropdown(label="update_state from: thread:count:last_node:next_node:rev:thread_ts",
choices=hist, value=hist[0],interactive=True)
def find_config(self,thread_ts):
for state in self.graph.get_state_history(self.thread):
config = state.config
if config['configurable']['thread_ts'] == thread_ts:
return config
return(None)
def copy_state(self,hist_str):
''' result of selecting an old state from the step pulldown. Note does not change thread.
This copies an old state to a new current state.
'''
thread_ts = hist_str.split(":")[-1]
#print(f"copy_state from {thread_ts}")
config = self.find_config(thread_ts)
#print(config)
state = self.graph.get_state(config)
self.graph.update_state(self.thread, state.values, as_node=state.values['lnode'])
new_state = self.graph.get_state(self.thread) #should now match
new_thread_ts = new_state.config['configurable']['thread_ts']
tid = new_state.config['configurable']['thread_id']
count = new_state.values['count']
lnode = new_state.values['lnode']
rev = new_state.values['revision_number']
nnode = new_state.next
return lnode,nnode,new_thread_ts,rev,count
def update_thread_pd(self,):
#print("update_thread_pd")
return gr.Dropdown(label="choose thread", choices=threads, value=self.thread_id,interactive=True)
def switch_thread(self,new_thread_id):
#print(f"switch_thread{new_thread_id}")
self.thread = {"configurable": {"thread_id": str(new_thread_id)}}
self.thread_id = new_thread_id
return
def modify_state(self,key,asnode,new_state):
''' gets the current state, modifes a single value in the state identified by key, and updates state with it.
note that this will create a new 'current state' node. If you do this multiple times with different keys, it will create
one for each update. Note also that it doesn't resume after the update
'''
current_values = self.graph.get_state(self.thread)
current_values.values[key] = new_state
self.graph.update_state(self.thread, current_values.values,as_node=asnode)
return
def create_interface(self):
with gr.Blocks(theme=gr.themes.Default(spacing_size='sm',text_size="sm")) as demo:
def updt_disp():
''' general update display on state change '''
current_state = self.graph.get_state(self.thread)
hist = []
# curiously, this generator returns the latest first
for state in self.graph.get_state_history(self.thread):
if state.metadata['step'] < 1: #ignore early states
continue
s_thread_ts = state.config['configurable']['thread_ts']
s_tid = state.config['configurable']['thread_id']
s_count = state.values['count']
s_lnode = state.values['lnode']
s_rev = state.values['revision_number']
s_nnode = state.next
st = f"{s_tid}:{s_count}:{s_lnode}:{s_nnode}:{s_rev}:{s_thread_ts}"
hist.append(st)
if not current_state.metadata: #handle init call
return{}
else:
return {
topic_bx : current_state.values["task"],
lnode_bx : current_state.values["lnode"],
count_bx : current_state.values["count"],
revision_bx : current_state.values["revision_number"],
nnode_bx : current_state.next,
threadid_bx : self.thread_id,
thread_pd : gr.Dropdown(label="choose thread", choices=self.threads, value=self.thread_id,interactive=True),
step_pd : gr.Dropdown(label="update_state from: thread:count:last_node:next_node:rev:thread_ts",
choices=hist, value=hist[0],interactive=True),
}
def get_snapshots():
new_label = f"thread_id: {self.thread_id}, Summary of snapshots"
sstate = ""
for state in self.graph.get_state_history(self.thread):
for key in ['plan', 'draft', 'critique']:
if key in state.values:
state.values[key] = state.values[key][:80] + "..."
if 'content' in state.values:
for i in range(len(state.values['answers'])):
state.values['answers'][i] = state.values['answers'][i][:20] + '...'
if 'writes' in state.metadata:
state.metadata['writes'] = "not shown"
sstate += str(state) + "\n\n"
return gr.update(label=new_label, value=sstate)
def vary_btn(stat):
#print(f"vary_btn{stat}")
return(gr.update(variant=stat))
with gr.Tab("Agent"):
with gr.Row():
topic_bx = gr.Textbox(label="Where do you want to travel?", value="Suggest me an iternary for Japan for 10 days in the month of October. I would like to make some new friends while I am on the trip. I am currently in NYC.")
gen_btn = gr.Button("Generate Itenary", scale=0,min_width=80, variant='primary')
cont_btn = gr.Button("Continue Itenary", scale=0,min_width=80)
with gr.Row():
lnode_bx = gr.Textbox(label="last node", min_width=100)
nnode_bx = gr.Textbox(label="next node", min_width=100)
threadid_bx = gr.Textbox(label="Thread", scale=0, min_width=80)
revision_bx = gr.Textbox(label="Draft Rev", scale=0, min_width=80)
count_bx = gr.Textbox(label="count", scale=0, min_width=80)
with gr.Accordion("Manage Agent", open=False):
checks = list(self.graph.nodes.keys())
checks.remove('__start__')
stop_after = gr.CheckboxGroup(checks,label="Interrupt After State", value=checks, scale=0, min_width=400)
with gr.Row():
thread_pd = gr.Dropdown(choices=self.threads,interactive=True, label="select thread", min_width=120, scale=0)
step_pd = gr.Dropdown(choices=['N/A'],interactive=True, label="select step", min_width=160, scale=1)
live = gr.Textbox(label="Live Agent Output", lines=5, max_lines=5)
# actions
sdisps =[topic_bx,lnode_bx,nnode_bx,threadid_bx,revision_bx,count_bx,step_pd,thread_pd]
thread_pd.input(self.switch_thread, [thread_pd], None).then(
fn=updt_disp, inputs=None, outputs=sdisps)
step_pd.input(self.copy_state,[step_pd],None).then(
fn=updt_disp, inputs=None, outputs=sdisps)
gen_btn.click(vary_btn,gr.Number("secondary", visible=False), gen_btn).then(
fn=self.run_agent, inputs=[gr.Number(True, visible=False),topic_bx,stop_after], outputs=[live],show_progress=True).then(
fn=updt_disp, inputs=None, outputs=sdisps).then(
vary_btn,gr.Number("primary", visible=False), gen_btn).then(
vary_btn,gr.Number("primary", visible=False), cont_btn)
cont_btn.click(vary_btn,gr.Number("secondary", visible=False), cont_btn).then(
fn=self.run_agent, inputs=[gr.Number(False, visible=False),topic_bx,stop_after],
outputs=[live]).then(
fn=updt_disp, inputs=None, outputs=sdisps).then(
vary_btn,gr.Number("primary", visible=False), cont_btn)
with gr.Tab("Plan"):
with gr.Row():
refresh_btn = gr.Button("Refresh")
modify_btn = gr.Button("Modify")
plan = gr.Textbox(label="Plan", lines=10, interactive=True)
refresh_btn.click(fn=self.get_state, inputs=gr.Number("plan", visible=False), outputs=plan)
modify_btn.click(fn=self.modify_state, inputs=[gr.Number("plan", visible=False),
gr.Number("planner", visible=False), plan],outputs=None).then(
fn=updt_disp, inputs=None, outputs=sdisps)
with gr.Tab("Research Content"):
refresh_btn = gr.Button("Refresh")
content_bx = gr.Textbox(label="answers", lines=10)
refresh_btn.click(fn=self.get_content, inputs=None, outputs=content_bx)
with gr.Tab("Draft"):
with gr.Row():
refresh_btn = gr.Button("Refresh")
modify_btn = gr.Button("Modify")
draft_bx = gr.Textbox(label="draft", lines=10, interactive=True)
refresh_btn.click(fn=self.get_state, inputs=gr.Number("draft", visible=False), outputs=draft_bx)
modify_btn.click(fn=self.modify_state, inputs=[gr.Number("draft", visible=False),
gr.Number("generate", visible=False), draft_bx], outputs=None).then(
fn=updt_disp, inputs=None, outputs=sdisps)
with gr.Tab("Critique"):
with gr.Row():
refresh_btn = gr.Button("Refresh")
modify_btn = gr.Button("Modify")
critique_bx = gr.Textbox(label="Critique", lines=10, interactive=True)
refresh_btn.click(fn=self.get_state, inputs=gr.Number("critique", visible=False), outputs=critique_bx)
modify_btn.click(fn=self.modify_state, inputs=[gr.Number("critique", visible=False),
gr.Number("reflect", visible=False),
critique_bx], outputs=None).then(
fn=updt_disp, inputs=None, outputs=sdisps)
with gr.Tab("StateSnapShots"):
with gr.Row():
refresh_btn = gr.Button("Refresh")
snapshots = gr.Textbox(label="State Snapshots Summaries")
refresh_btn.click(fn=get_snapshots, inputs=None, outputs=snapshots)
return demo
def launch(self, share=None):
if port := os.getenv("PORT1"):
self.demo.launch(share=True, server_port=int(port), server_name="0.0.0.0")
else:
self.demo.launch(share=self.share)
if __name__ == "__main__":
MultiAgent = ewriter()
app = writer_gui(MultiAgent.graph)
app.launch()