decodingdatascience commited on
Commit
ee489cf
·
verified ·
1 Parent(s): 8bd78d1

Update research_explainer/agent.py

Browse files
Files changed (1) hide show
  1. research_explainer/agent.py +10 -0
research_explainer/agent.py CHANGED
@@ -93,4 +93,14 @@ Remember: Your goal is to make complex research accessible while maintaining acc
93
  """
94
 
95
 
 
 
 
 
 
 
 
 
 
 
96
 
 
93
  """
94
 
95
 
96
+ root_agent = Agent(
97
+ name ="research_explain_agent",
98
+ model = "gemini-2.5-flash",
99
+ description ="A specialized agent for explaining concepts about research paper",
100
+ instruction = BASE_PROMPT,
101
+ tools = [
102
+ find_research_context,
103
+ generate_flowchart,
104
+ ]
105
+ )
106