-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrat.py
96 lines (85 loc) · 6.35 KB
/
rat.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
from autogen_agentchat.agents import AssistantAgent
from autogen_agentchat.conditions import SourceMatchTermination, MaxMessageTermination
from autogen_agentchat.teams import SelectorGroupChat
from models import GPT_4O_MODEL, GPT_4O_MINI_MODEL
from tools import SearchTool
import logging
from visual_agent import VisualAgent
class Rat:
def __init__(self):
self.figure_and_chunk_pairs = {}
self.search_tool = SearchTool(self.figure_and_chunk_pairs)
@property
def research_agent(self):
return AssistantAgent(
name="research_agent",
tools=[self.search_tool.rat_breadth_first_tool],
model_client=GPT_4O_MINI_MODEL,
description="A research agent that can help you find information.",
system_message="You are a senior research agent specialising in company based research for a financial services company. Take the user's query, then formulate a series of search terms to to retrieve the relevant information from the Azure Search index. You must execute a tool call to the search index. DO NOT USE YOUR INTERNAL KNOWLEDGE. Send a minimum of 3 search terms to the search index to retrieve the relevant information. YOU MUST REQUEST A TOOL CALL.",
# model_client_stream=True,
)
@property
def answer_agent(self):
return VisualAgent(
name="answer_agent",
model_client=GPT_4O_MODEL,
description="An agent that can answer questions.",
system_message="You are a senior data analyst at a financial services company who specialises in writing data driven insights to user's questions. Take the user's question, and the context from the search results, write response that clear addresses the user's question. The user may want to invest in company, therefore focus on providing data driven insights and a critical mindset to answering the question. Format the answer in Markdown to aid understanding. Only use information from the search results to answer the user's question. Answer in no more than 3 paragraphs. If any of the retrieved figures would be useful for the user then display the figure retrieved from the search index by adding <figure ChunkId='<ChunkId for selected figure>' FigureId='<Original FigureId for selected figure from research tool call>'> to the end of your response. DO not generate the chunk id and figure id, always use the original ones from the search tool call.",
model_client_stream=True,
chunk_and_figure_pairs=self.figure_and_chunk_pairs,
)
@property
def revise_research_agent(self):
return AssistantAgent(
name="revise_research_agent",
tools=[self.search_tool.rat_depth_first_tool],
model_client=GPT_4O_MINI_MODEL,
description="A research agent that can help you find information.",
system_message="You are a senior research agent specialising in company based research for a financial services company. Take the user's query, initial response and answer, then formulate a series of new search terms to to retrieve additional information from the Azure Search index. Carefully think about what additional information might be useful to the question and retreive it. The search terms should be based on the original information received, what you think is missing and how the user's original question can be enhanced. You must execute a tool call to the search index. DO NOT USE YOUR INTERNAL KNOWLEDGE. Send a minimum of 5 new search terms to the search index to retrieve the relevant information. YOU MUST REQUEST A TOOL CALL.",
# model_client_stream=True,
)
@property
def revise_answer_agent(self):
return VisualAgent(
name="revise_answer_agent",
model_client=GPT_4O_MODEL,
description="An agent that can revise answers.",
system_message="""You are a senior data analyst at a financial services company who specializes in improving and revising data-driven insights to users' questions. By nature, you are critical and should ALWAYS MAKE IMPROVEMENTS. Review the initial answer provided, the additional research provided by the revision research agent and write a new data driven answer that includes all of the additional research. DO NOT COPY the previous answer, instead add additional detail and context to enhance it. Answer additional points the user may have not thought to ask and expand on all areas of the research. You can rewrite and edit the additonal points in the answer. Keep your response concise, ideally no longer than five paragraphs. If any of the retrieved figures would be useful for the user then display the figure retrieved from the search index by adding <figure ChunkId='<ChunkId for selected figure>' FigureId='<Original FigureId for selected figure from research tool call>'> to the end of your response. DO not generate the chunk id and figure id, always use the original ones from the search tool call.""",
model_client_stream=True,
chunk_and_figure_pairs=self.figure_and_chunk_pairs,
)
def agent_selector(self, messages):
"""Unified selector for the complete flow."""
logging.info("Messages: %s", messages)
current_agent = messages[-1].source if messages else "user"
decision = None
# If this is the first message start with user_message_rewrite_agent
if current_agent == "user":
decision = "research_agent"
# Handle transition after query rewriting
elif current_agent == "research_agent":
decision = "answer_agent"
elif current_agent == "answer_agent":
decision = "revise_research_agent"
elif current_agent == "revise_research_agent":
decision = "revise_answer_agent"
print("Transitioning To: ", decision)
return decision
@property
def group_chat(self):
return SelectorGroupChat(
[
self.research_agent,
self.answer_agent,
self.revise_research_agent,
self.revise_answer_agent,
],
termination_condition=SourceMatchTermination(
sources=["revise_answer_agent"]
)
| MaxMessageTermination(15),
allow_repeated_speaker=True,
model_client=GPT_4O_MINI_MODEL,
selector_func=self.agent_selector,
)