-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathagent.py
More file actions
907 lines (662 loc) · 36.4 KB
/
agent.py
File metadata and controls
907 lines (662 loc) · 36.4 KB
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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
# agent.py
import os
from dotenv import load_dotenv
from typing import TypedDict, Annotated
import operator
from langchain_core.messages import AnyMessage
from langchain_tavily import TavilySearch
from langchain_groq import ChatGroq
from langgraph.graph import StateGraph, END
from langgraph.prebuilt import ToolNode
from langchain_core.tools import tool
load_dotenv()
# --- 1. Define Tools ---
tavily_tool = TavilySearch(max_results=1, api_key=os.environ.get("TAVILY_API_KEY"))
tools = [tavily_tool]
# --- 2. Define Agent State (with new fields for clarity) ---
class AgentState(TypedDict):
messages: Annotated[list[AnyMessage], operator.add]
report_data: dict
report_text: str
# --- NEW: We will store pre-processed lists here ---
strengths: list
weaknesses: list
# --- 3. Define Graph Nodes ---
# --- NEW NODE: This node runs first to prepare the data ---
def preprocess_node(state: AgentState):
"""
Takes the raw report_data and creates clean lists of strengths and weaknesses.
This removes the burden of interpretation from the AI, making it more reliable.
"""
strengths = []
weaknesses = []
# Use .get() for safety in case 'topic_breakdown' doesn't exist
topic_breakdown = state['report_data'].get('topic_breakdown', {})
for topic, data in topic_breakdown.items():
# The key in app.py is 'incorrect', not 'incorrect_count'
if data.get('incorrect', 0) > 0:
weaknesses.append(topic)
# We consider a topic a strength if there are no incorrect answers
elif data.get('correct', 0) > 0:
strengths.append(topic)
print(f"--- Pre-processing Complete ---")
print(f"Strengths identified: {strengths}")
print(f"Weaknesses identified: {weaknesses}")
return {"strengths": strengths, "weaknesses": weaknesses}
llm = ChatGroq(model="llama-3.1-8b-instant", temperature=0.1)
llm_with_tools = llm.bind_tools(tools)
# --- MODIFIED: This node now receives a clean list of weaknesses ---
def planner_node(state: AgentState):
"""
Analyzes the pre-processed list of weaknesses and generates targeted search queries.
"""
# --- MAJOR CHANGE: We no longer pass the complex report_data dictionary ---
prompt = f"""
You are an expert academic advisor. You have been given a pre-processed list of a student's weak topics. Your only job is to generate specific web search queries for EACH topic on this list.
**Student's Weak Topics:**
{state['weaknesses']}
**Your Task:**
For EACH topic in the list above, you MUST generate two tool calls to your web search tool (`tavily_search`) by filling in the following templates.
**CRITICAL INSTRUCTION:** You MUST replace `[TOPIC_NAME]` in the templates below with the actual weak topic from the list.
**Templates to use for your tool calls:**
* **For Video Tutorials:**
`site:youtube.com "[TOPIC_NAME]" tutorial for placements`
* **For Practice Material:**
`free "[TOPIC_NAME]" practice questions GeeksforGeeks OR IndiaBIX`
After deciding on all the necessary tool calls for every weak topic, also write a brief, preliminary analysis of the student's performance based on the number of weak areas.
"""
messages = [("user", prompt)]
response = llm_with_tools.invoke(messages)
return {"messages": [response]}
tool_node = ToolNode(tools)
# --- MODIFIED: This node now receives clean lists of strengths and weaknesses ---
def summarizer_node(state: AgentState):
"""This node takes all information and generates the final, professional report."""
# --- MAJOR CHANGE: We now provide the strengths and weaknesses directly ---
# In agent.py, inside the summarizer_node function:
prompt = f"""
You are a report-generating AI. Your only job is to synthesize the provided conversation history and data into a final, perfectly formatted Markdown document.
---
**CRITICAL FORMATTING INSTRUCTION: THIS IS THE MOST IMPORTANT RULE.**
You MUST create clickable Markdown hyperlinks for all resources.
The tool's output for a search result looks like this: `{{'url': 'https://www.the-real-url.com/page', 'content': 'The Title of the Page'}}`.
You MUST convert this exact data structure into the following Markdown format: `[The Title of the Page](https://www.the-real-url.com/page)`
**DO NOT** write the URL in plain text after the title.
**DO NOT** put parentheses `()` around the URL without using the square brackets `[]` for the text.
You must follow the `[Text](URL)` syntax precisely and without deviation.
---
**Your Task:**
Generate a report with the following structure, using the data from the conversation history and applying the critical formatting instruction above for all links.
## Overall Summary
(Write a brief, encouraging paragraph here)
## Detailed Analysis
### Your Strengths
* (List the student's strengths from `{state['strengths']}`)
### Areas for Improvement
* (List the student's weaknesses from `{state['weaknesses']}`)
## Personalized Recommendations
(Write a short paragraph with actionable advice here)
## Recommended Resources
(For each weak topic, create a sub-heading. Find the corresponding tool outputs in the conversation history and create the two required resource links using the correct hyperlink format as specified in the critical instruction.)
### Topic: [Name of Weak Topic 1]
* **Video Tutorial:** [Use the 'content' from the tool result as the link text](Use the 'url' from the tool result as the link)
* **Practice Material:** [Use the 'content' from the tool result as the link text](Use the 'url' from the tool result as the link)
(Repeat for all other weak topics)
Generate ONLY the final report text in Markdown. Do not add any commentary.
"""
response = llm.invoke(state["messages"] + [("user", prompt)])
return {"report_text": response.content}
def should_continue(state: AgentState):
if state["messages"][-1].tool_calls:
return "use_tools"
else:
# If there are no weaknesses, the planner won't make tool calls.
# In this case, we can go straight to the summary.
return "summarize"
# --- 4. Wire up the graph (with the new pre-process step) ---
graph = StateGraph(AgentState)
# --- NEW: Add the pre-process node ---
graph.add_node("preprocess", preprocess_node)
graph.add_node("planner", planner_node)
graph.add_node("tool_node", tool_node)
graph.add_node("summarizer", summarizer_node)
# --- NEW: The graph now starts at the preprocess node ---
graph.set_entry_point("preprocess")
# --- NEW: The pre-processor always runs before the planner ---
graph.add_edge("preprocess", "planner")
graph.add_conditional_edges("planner", should_continue, {"use_tools": "tool_node", "summarize": "summarizer"})
graph.add_edge("tool_node", "summarizer")
graph.add_edge("summarizer", END)
app_graph = graph.compile()
# --- 5. Wrapper function (no changes needed here) ---
def run_graph_agent(report_data_dict):
try:
# --- NEW: The initial state now has empty lists for strengths/weaknesses ---
initial_state = {
"messages": [],
"report_data": report_data_dict,
"strengths": [],
"weaknesses": []
}
final_state = app_graph.invoke(initial_state, {"recursion_limit": 5})
return {"analysis": final_state.get('report_text', "Error: Could not generate report text.")}
except Exception as e:
return {"analysis": f"An error occurred while generating the report: {e}"}
# import os
# from dotenv import load_dotenv
# from typing import TypedDict, Annotated
# import operator
# from langchain_core.messages import AnyMessage
# from langchain_tavily import TavilySearch
# from langchain_groq import ChatGroq
# from langgraph.graph import StateGraph, END
# from langgraph.prebuilt import ToolNode
# from langchain_core.tools import tool
# load_dotenv()
# # --- 1. Define Tools ---
# tavily_tool = TavilySearch(max_results=1, api_key=os.environ.get("TAVILY_API_KEY")) # Get the single best result
# tools = [tavily_tool]
# # --- 2. Define Agent State ---
# class AgentState(TypedDict):
# messages: Annotated[list[AnyMessage], operator.add]
# report_data: dict
# report_text: str
# # --- 3. Define Graph Nodes ---
# llm = ChatGroq(model="llama-3.1-8b-instant", temperature=0.1)
# llm_with_tools = llm.bind_tools(tools)
# def planner_node(state: AgentState):
# prompt = f"""
# You are an expert academic advisor. Your first job is to analyze a student's test data and generate SPECIFIC web search queries to find resources for the student's weak topics. You have one tool available: a web search tool.
# **Student's Test Data:**
# {state['report_data']}
# **Your Task:**
# 1. Analyze the 'topic_breakdown' in the data.
# 2. Identify every topic where 'incorrect_count' is greater than 0.
# 3. For EACH weak topic you identify, you MUST generate two tool calls to your web search tool (`tavily_search`) by filling in the following templates.
# **CRITICAL INSTRUCTION:** You MUST replace `[TOPIC_NAME]` in the templates below with the actual weak topic you have identified (e.g., "Percentages", "Syllogisms", "Blood Relations").
# **Templates to use for your tool calls:**
# * **For Video Tutorials:**
# `site:youtube.com "[TOPIC_NAME]" tutorial for placements`
# * **For Practice Material:**
# `free "[TOPIC_NAME]" practice questions GeeksforGeeks OR IndiaBIX`
# **Example:**
# If a student is weak in the "Profit & Loss" topic, you must generate these two exact search queries for your tool calls:
# 1. `site:youtube.com "Profit & Loss" tutorial for placements`
# 2. `free "Profit & Loss" practice questions GeeksforGeeks OR IndiaBIX`
# After deciding on all the necessary tool calls for every weak topic, also write a preliminary analysis of the student's performance.
# """
# messages = [("user", prompt)]
# response = llm_with_tools.invoke(messages)
# return {"messages": [response]}
# tool_node = ToolNode(tools)
# # --- SUMMARIZER PROMPT ---
# def summarizer_node(state: AgentState):
# """This node takes all information and generates the final, professional report."""
# prompt = f"""
# You are a helpful career coach creating a final, polished performance report. Your task is to synthesize the information from the conversation history into a Markdown report.
# **CRITICAL INSTRUCTION:** The conversation history contains `ToolMessage` results from a web search. Each result is a list containing a dictionary like `{{'url': 'THE_REAL_URL', 'content': 'THE_REAL_LINK_TEXT'}}`. You MUST use this exact data. **DO NOT invent, guess, or create your own URLs or link text.** You must extract the `url` and `content` directly from the tool messages.
# **Your Task:**
# Combine all information into a single, comprehensive, and professionally formatted report in Markdown. Follow this structure EXACTLY:
# ## Overall Summary
# Write a brief, encouraging paragraph about the student's performance and potential.
# ## Detailed Analysis
# ### Your Strengths
# * List all the topics where the student performed well as bullet points.
# ### Areas for Improvement
# * List all the weak topics as bullet points.
# ## Personalized Recommendations
# Write a short paragraph with actionable advice based on the analysis.
# ## Recommended Resources
# For each weak topic, create a sub-heading. Then, find the corresponding `ToolMessage` in the history and construct the Markdown links using the real data you found.
# ### Topic: [Name of Weak Topic 1]
# * **Video Tutorial:** [Use the 'content' from the tool result](Use the 'url' from the tool result and the show the link too in clickable format)
# * **Practice Material:** [Use the 'content' from the tool result](Use the 'url' from the tool result)
# Generate only the final report text in Markdown. Do not add any extra text or commentary.
# """
# response = llm.invoke(state["messages"] + [("user", prompt)])
# return {"report_text": response.content}
# def should_continue(state: AgentState):
# if state["messages"][-1].tool_calls:
# return "use_tools"
# else:
# return "summarize"
# # --- 4. Wire up the graph ---
# graph = StateGraph(AgentState)
# graph.add_node("planner", planner_node)
# graph.add_node("tool_node", tool_node)
# graph.add_node("summarizer", summarizer_node)
# graph.set_entry_point("planner")
# graph.add_conditional_edges("planner", should_continue, {"use_tools": "tool_node", "summarize": "summarizer"})
# graph.add_edge("tool_node", "summarizer")
# graph.add_edge("summarizer", END)
# app_graph = graph.compile()
# # --- 5. Create a wrapper function for Flask ---
# def run_graph_agent(report_data_dict):
# try:
# initial_state = {"messages": [], "report_data": report_data_dict}
# final_state = app_graph.invoke(initial_state, {"recursion_limit": 5})
# return {"analysis": final_state.get('report_text', "Error: Could not generate report text.")}
# except Exception as e:
# return {"analysis": f"An error occurred while generating the report: {e}"}
# # import os
# # from dotenv import load_dotenv
# # from typing import TypedDict, Annotated
# # import operator
# # from langchain_core.messages import AnyMessage
# # from langchain_tavily import TavilySearch
# # from langchain_groq import ChatGroq
# # from langgraph.graph import StateGraph, END
# # from langgraph.prebuilt import ToolNode
# # from langchain_core.tools import tool
# # load_dotenv()
# # # --- 1. Define Tools ---
# # tavily_tool = TavilySearch(max_results=1, api_key=os.environ.get("TAVILY_API_KEY"))
# # tools = [tavily_tool]
# # # --- 2. Define Agent State ---
# # class AgentState(TypedDict):
# # messages: Annotated[list[AnyMessage], operator.add]
# # report_data: dict
# # report_text: str
# # # --- 3. Define Graph Nodes ---
# # llm = ChatGroq(model="llama3-8b-8192", temperature=0.1)
# # llm_with_tools = llm.bind_tools(tools)
# # def planner_node(state: AgentState):
# # prompt = f"""
# # You are an expert academic advisor. Your first job is to analyze a student's test data and decide which topics require external resources. You have one tool available: a web search tool.
# # **Student's Test Data:**
# # {state['report_data']}
# # Analyze the 'topic_breakdown'. Identify all topics where 'incorrect_count' is greater than 0. These are the student's weak topics.
# # For EACH weak topic you identify, you MUST use your web search tool (`tavily_search`):
# # 1. **To find a video tutorial:** Frame your search query like this: `site:youtube.com "Time & Work" tutorial for placements`
# # 2. **To find practice material:** Frame your search query like this: `free "Time & Work" practice questions GeeksforGeeks OR IndiaBIX`
# # After deciding on the tool calls, also write a preliminary analysis of the student's performance.
# # """
# # messages = [("user", prompt)]
# # response = llm_with_tools.invoke(messages)
# # return {"messages": [response]}
# # tool_node = ToolNode(tools)
# # # --- FINAL, MOST ROBUST SUMMARIZER PROMPT ---
# # # In agent.py, replace only this function:
# # def summarizer_node(state: AgentState):
# # """This node takes all information and generates the final, professional report."""
# # # This is the final, most direct prompt to ensure correct hyperlink formatting.
# # prompt = f"""
# # You are a report-generating AI. Your only task is to synthesize the provided conversation history into a final, well-formatted Markdown document.
# # **CRITICAL FORMATTING INSTRUCTION:**
# # You MUST create clickable Markdown hyperlinks for all resources. The tool's output for a search result looks like this: `{{'url': 'https://www.real-url.com/page', 'content': 'Title of the Page'}}`.
# # You MUST convert this into the following Markdown format: `[Title of the Page](https://www.real-url.com/page)`
# # **DO NOT** write the URL in plain text. **DO NOT** add parentheses around the URL without using the square brackets for the text. Follow the `[Text](URL)` syntax precisely.
# # **Your Task:**
# # Generate a report with the following structure, using the data from the conversation history and applying the critical formatting instruction above for all links.
# # ## Overall Summary
# # (Write a brief, encouraging paragraph here)
# # ## Detailed Analysis
# # ### Your Strengths
# # * (List the strong topics here)
# # ### Areas for Improvement
# # * (List the weak topics here)
# # ## Personalized Recommendations
# # (Write a short paragraph with actionable advice here)
# # ## Recommended Resources
# # (For each weak topic, create a sub-heading and list the resources using the correct hyperlink format)
# # ### Topic: [Name of Weak Topic 1]
# # * **Video Tutorial:** [Use the 'content' as text](Use the 'url' as the link)
# # * **Practice Material:** [Use the 'content' as text](Use the 'url' as the link)
# # Generate only the final report text in Markdown.
# # """
# # response = llm.invoke(state["messages"] + [("user", prompt)])
# # return {"report_text": response.content}
# # def should_continue(state: AgentState):
# # if state["messages"][-1].tool_calls:
# # return "use_tools"
# # else:
# # return "summarize"
# # # --- 4. Wire up the graph ---
# # graph = StateGraph(AgentState)
# # graph.add_node("planner", planner_node)
# # graph.add_node("tool_node", tool_node)
# # graph.add_node("summarizer", summarizer_node)
# # graph.set_entry_point("planner")
# # graph.add_conditional_edges("planner", should_continue, {"use_tools": "tool_node", "summarize": "summarizer"})
# # graph.add_edge("tool_node", "summarizer")
# # graph.add_edge("summarizer", END)
# # app_graph = graph.compile()
# # # --- 5. Create a wrapper function for Flask ---
# # def run_graph_agent(report_data_dict):
# # try:
# # initial_state = {"messages": [], "report_data": report_data_dict}
# # final_state = app_graph.invoke(initial_state, {"recursion_limit": 5})
# # return {"analysis": final_state.get('report_text', "Error: Could not generate report text.")}
# # except Exception as e:
# # return {"analysis": f"An error occurred while generating the report: {e}"}
# # agent.py
# import os
# from dotenv import load_dotenv
# from typing import TypedDict, Annotated
# import operator
# from langchain_core.messages import AnyMessage
# from langchain_tavily import TavilySearch
# from langchain_groq import ChatGroq
# from langgraph.graph import StateGraph, END
# from langgraph.prebuilt import ToolNode
# from langchain_core.tools import tool
# load_dotenv()
# # --- 1. Define Tools ---
# tavily_tool = TavilySearch(max_results=1, api_key=os.environ.get("TAVILY_API_KEY"))
# tools = [tavily_tool]
# # --- 2. Define Agent State (with new fields for clarity) ---
# class AgentState(TypedDict):
# messages: Annotated[list[AnyMessage], operator.add]
# report_data: dict
# report_text: str
# # --- NEW: We will store pre-processed lists here ---
# strengths: list
# weaknesses: list
# # --- 3. Define Graph Nodes ---
# # --- NEW NODE: This node runs first to prepare the data ---
# def preprocess_node(state: AgentState):
# """
# Takes the raw report_data and creates clean lists of strengths and weaknesses.
# This removes the burden of interpretation from the AI, making it more reliable.
# """
# strengths = []
# weaknesses = []
# # Use .get() for safety in case 'topic_breakdown' doesn't exist
# topic_breakdown = state['report_data'].get('topic_breakdown', {})
# for topic, data in topic_breakdown.items():
# # The key in app.py is 'incorrect', not 'incorrect_count'
# if data.get('incorrect', 0) > 0:
# weaknesses.append(topic)
# # We consider a topic a strength if there are no incorrect answers
# elif data.get('correct', 0) > 0:
# strengths.append(topic)
# print(f"--- Pre-processing Complete ---")
# print(f"Strengths identified: {strengths}")
# print(f"Weaknesses identified: {weaknesses}")
# return {"strengths": strengths, "weaknesses": weaknesses}
# llm = ChatGroq(model="llama-3.1-8b-instant", temperature=0.1)
# llm_with_tools = llm.bind_tools(tools)
# # --- MODIFIED: This node now receives a clean list of weaknesses ---
# def planner_node(state: AgentState):
# """
# Analyzes the pre-processed list of weaknesses and generates targeted search queries.
# """
# # --- MAJOR CHANGE: We no longer pass the complex report_data dictionary ---
# prompt = f"""
# You are an expert academic advisor. You have been given a pre-processed list of a student's weak topics. Your only job is to generate specific web search queries for EACH topic on this list.
# **Student's Weak Topics:**
# {state['weaknesses']}
# **Your Task:**
# For EACH topic in the list above, you MUST generate two tool calls to your web search tool (`tavily_search`) by filling in the following templates.
# **CRITICAL INSTRUCTION:** You MUST replace `[TOPIC_NAME]` in the templates below with the actual weak topic from the list.
# **Templates to use for your tool calls:**
# * **For Video Tutorials:**
# `site:youtube.com "[TOPIC_NAME]" tutorial for placements`
# * **For Practice Material:**
# `free "[TOPIC_NAME]" practice questions GeeksforGeeks OR IndiaBIX`
# After deciding on all the necessary tool calls for every weak topic, also write a brief, preliminary analysis of the student's performance based on the number of weak areas.
# """
# messages = [("user", prompt)]
# response = llm_with_tools.invoke(messages)
# return {"messages": [response]}
# tool_node = ToolNode(tools)
# # --- MODIFIED: This node now receives clean lists of strengths and weaknesses ---
# def summarizer_node(state: AgentState):
# """This node takes all information and generates the final, professional report."""
# # --- MAJOR CHANGE: We now provide the strengths and weaknesses directly ---
# # In agent.py, inside the summarizer_node function:
# prompt = f"""
# You are a report-generating AI. Your only job is to synthesize the provided conversation history and data into a final, perfectly formatted Markdown document.
# ---
# **CRITICAL FORMATTING INSTRUCTION: THIS IS THE MOST IMPORTANT RULE.**
# You MUST create clickable Markdown hyperlinks for all resources.
# The tool's output for a search result looks like this: `{{'url': 'https://www.the-real-url.com/page', 'content': 'The Title of the Page'}}`.
# You MUST convert this exact data structure into the following Markdown format: `[The Title of the Page](https://www.the-real-url.com/page)`
# **DO NOT** write the URL in plain text after the title.
# **DO NOT** put parentheses `()` around the URL without using the square brackets `[]` for the text.
# You must follow the `[Text](URL)` syntax precisely and without deviation.
# ---
# **Your Task:**
# Generate a report with the following structure, using the data from the conversation history and applying the critical formatting instruction above for all links.
# ## Overall Summary
# (Write a brief, encouraging paragraph here)
# ## Detailed Analysis
# ### Your Strengths
# * (List the student's strengths from `{state['strengths']}`)
# ### Areas for Improvement
# * (List the student's weaknesses from `{state['weaknesses']}`)
# ## Personalized Recommendations
# (Write a short paragraph with actionable advice here)
# ## Recommended Resources
# (For each weak topic, create a sub-heading. Find the corresponding tool outputs in the conversation history and create the two required resource links using the correct hyperlink format as specified in the critical instruction.)
# ### Topic: [Name of Weak Topic 1]
# * **Video Tutorial:** [Use the 'content' from the tool result as the link text](Use the 'url' from the tool result as the link)
# * **Practice Material:** [Use the 'content' from the tool result as the link text](Use the 'url' from the tool result as the link)
# (Repeat for all other weak topics)
# Generate ONLY the final report text in Markdown. Do not add any commentary.
# """
# response = llm.invoke(state["messages"] + [("user", prompt)])
# return {"report_text": response.content}
# def should_continue(state: AgentState):
# if state["messages"][-1].tool_calls:
# return "use_tools"
# else:
# # If there are no weaknesses, the planner won't make tool calls.
# # In this case, we can go straight to the summary.
# return "summarize"
# # --- 4. Wire up the graph (with the new pre-process step) ---
# graph = StateGraph(AgentState)
# # --- NEW: Add the pre-process node ---
# graph.add_node("preprocess", preprocess_node)
# graph.add_node("planner", planner_node)
# graph.add_node("tool_node", tool_node)
# graph.add_node("summarizer", summarizer_node)
# # --- NEW: The graph now starts at the preprocess node ---
# graph.set_entry_point("preprocess")
# # --- NEW: The pre-processor always runs before the planner ---
# graph.add_edge("preprocess", "planner")
# graph.add_conditional_edges("planner", should_continue, {"use_tools": "tool_node", "summarize": "summarizer"})
# graph.add_edge("tool_node", "summarizer")
# graph.add_edge("summarizer", END)
# app_graph = graph.compile()
# # --- 5. Wrapper function (no changes needed here) ---
# def run_graph_agent(report_data_dict):
# try:
# # --- NEW: The initial state now has empty lists for strengths/weaknesses ---
# initial_state = {
# "messages": [],
# "report_data": report_data_dict,
# "strengths": [],
# "weaknesses": []
# }
# final_state = app_graph.invoke(initial_state, {"recursion_limit": 5})
# return {"analysis": final_state.get('report_text', "Error: Could not generate report text.")}
# except Exception as e:
# return {"analysis": f"An error occurred while generating the report: {e}"}
# # import os
# # from dotenv import load_dotenv
# # from typing import TypedDict, Annotated
# # import operator
# # from langchain_core.messages import AnyMessage
# # from langchain_tavily import TavilySearch
# # from langchain_groq import ChatGroq
# # from langgraph.graph import StateGraph, END
# # from langgraph.prebuilt import ToolNode
# # from langchain_core.tools import tool
# # load_dotenv()
# # # --- 1. Define Tools ---
# # tavily_tool = TavilySearch(max_results=1, api_key=os.environ.get("TAVILY_API_KEY")) # Get the single best result
# # tools = [tavily_tool]
# # # --- 2. Define Agent State ---
# # class AgentState(TypedDict):
# # messages: Annotated[list[AnyMessage], operator.add]
# # report_data: dict
# # report_text: str
# # # --- 3. Define Graph Nodes ---
# # llm = ChatGroq(model="llama-3.1-8b-instant", temperature=0.1)
# # llm_with_tools = llm.bind_tools(tools)
# # def planner_node(state: AgentState):
# # prompt = f"""
# # You are an expert academic advisor. Your first job is to analyze a student's test data and generate SPECIFIC web search queries to find resources for the student's weak topics. You have one tool available: a web search tool.
# # **Student's Test Data:**
# # {state['report_data']}
# # **Your Task:**
# # 1. Analyze the 'topic_breakdown' in the data.
# # 2. Identify every topic where 'incorrect_count' is greater than 0.
# # 3. For EACH weak topic you identify, you MUST generate two tool calls to your web search tool (`tavily_search`) by filling in the following templates.
# # **CRITICAL INSTRUCTION:** You MUST replace `[TOPIC_NAME]` in the templates below with the actual weak topic you have identified (e.g., "Percentages", "Syllogisms", "Blood Relations").
# # **Templates to use for your tool calls:**
# # * **For Video Tutorials:**
# # `site:youtube.com "[TOPIC_NAME]" tutorial for placements`
# # * **For Practice Material:**
# # `free "[TOPIC_NAME]" practice questions GeeksforGeeks OR IndiaBIX`
# # **Example:**
# # If a student is weak in the "Profit & Loss" topic, you must generate these two exact search queries for your tool calls:
# # 1. `site:youtube.com "Profit & Loss" tutorial for placements`
# # 2. `free "Profit & Loss" practice questions GeeksforGeeks OR IndiaBIX`
# # After deciding on all the necessary tool calls for every weak topic, also write a preliminary analysis of the student's performance.
# # """
# # messages = [("user", prompt)]
# # response = llm_with_tools.invoke(messages)
# # return {"messages": [response]}
# # tool_node = ToolNode(tools)
# # # --- SUMMARIZER PROMPT ---
# # def summarizer_node(state: AgentState):
# # """This node takes all information and generates the final, professional report."""
# # prompt = f"""
# # You are a helpful career coach creating a final, polished performance report. Your task is to synthesize the information from the conversation history into a Markdown report.
# # **CRITICAL INSTRUCTION:** The conversation history contains `ToolMessage` results from a web search. Each result is a list containing a dictionary like `{{'url': 'THE_REAL_URL', 'content': 'THE_REAL_LINK_TEXT'}}`. You MUST use this exact data. **DO NOT invent, guess, or create your own URLs or link text.** You must extract the `url` and `content` directly from the tool messages.
# # **Your Task:**
# # Combine all information into a single, comprehensive, and professionally formatted report in Markdown. Follow this structure EXACTLY:
# # ## Overall Summary
# # Write a brief, encouraging paragraph about the student's performance and potential.
# # ## Detailed Analysis
# # ### Your Strengths
# # * List all the topics where the student performed well as bullet points.
# # ### Areas for Improvement
# # * List all the weak topics as bullet points.
# # ## Personalized Recommendations
# # Write a short paragraph with actionable advice based on the analysis.
# # ## Recommended Resources
# # For each weak topic, create a sub-heading. Then, find the corresponding `ToolMessage` in the history and construct the Markdown links using the real data you found.
# # ### Topic: [Name of Weak Topic 1]
# # * **Video Tutorial:** [Use the 'content' from the tool result](Use the 'url' from the tool result and the show the link too in clickable format)
# # * **Practice Material:** [Use the 'content' from the tool result](Use the 'url' from the tool result)
# # Generate only the final report text in Markdown. Do not add any extra text or commentary.
# # """
# # response = llm.invoke(state["messages"] + [("user", prompt)])
# # return {"report_text": response.content}
# # def should_continue(state: AgentState):
# # if state["messages"][-1].tool_calls:
# # return "use_tools"
# # else:
# # return "summarize"
# # # --- 4. Wire up the graph ---
# # graph = StateGraph(AgentState)
# # graph.add_node("planner", planner_node)
# # graph.add_node("tool_node", tool_node)
# # graph.add_node("summarizer", summarizer_node)
# # graph.set_entry_point("planner")
# # graph.add_conditional_edges("planner", should_continue, {"use_tools": "tool_node", "summarize": "summarizer"})
# # graph.add_edge("tool_node", "summarizer")
# # graph.add_edge("summarizer", END)
# # app_graph = graph.compile()
# # # --- 5. Create a wrapper function for Flask ---
# # def run_graph_agent(report_data_dict):
# # try:
# # initial_state = {"messages": [], "report_data": report_data_dict}
# # final_state = app_graph.invoke(initial_state, {"recursion_limit": 5})
# # return {"analysis": final_state.get('report_text', "Error: Could not generate report text.")}
# # except Exception as e:
# # return {"analysis": f"An error occurred while generating the report: {e}"}
# # # import os
# # # from dotenv import load_dotenv
# # # from typing import TypedDict, Annotated
# # # import operator
# # # from langchain_core.messages import AnyMessage
# # # from langchain_tavily import TavilySearch
# # # from langchain_groq import ChatGroq
# # # from langgraph.graph import StateGraph, END
# # # from langgraph.prebuilt import ToolNode
# # # from langchain_core.tools import tool
# # # load_dotenv()
# # # # --- 1. Define Tools ---
# # # tavily_tool = TavilySearch(max_results=1, api_key=os.environ.get("TAVILY_API_KEY"))
# # # tools = [tavily_tool]
# # # # --- 2. Define Agent State ---
# # # class AgentState(TypedDict):
# # # messages: Annotated[list[AnyMessage], operator.add]
# # # report_data: dict
# # # report_text: str
# # # # --- 3. Define Graph Nodes ---
# # # llm = ChatGroq(model="llama3-8b-8192", temperature=0.1)
# # # llm_with_tools = llm.bind_tools(tools)
# # # def planner_node(state: AgentState):
# # # prompt = f"""
# # # You are an expert academic advisor. Your first job is to analyze a student's test data and decide which topics require external resources. You have one tool available: a web search tool.
# # # **Student's Test Data:**
# # # {state['report_data']}
# # # Analyze the 'topic_breakdown'. Identify all topics where 'incorrect_count' is greater than 0. These are the student's weak topics.
# # # For EACH weak topic you identify, you MUST use your web search tool (`tavily_search`):
# # # 1. **To find a video tutorial:** Frame your search query like this: `site:youtube.com "Time & Work" tutorial for placements`
# # # 2. **To find practice material:** Frame your search query like this: `free "Time & Work" practice questions GeeksforGeeks OR IndiaBIX`
# # # After deciding on the tool calls, also write a preliminary analysis of the student's performance.
# # # """
# # # messages = [("user", prompt)]
# # # response = llm_with_tools.invoke(messages)
# # # return {"messages": [response]}
# # # tool_node = ToolNode(tools)
# # # # --- FINAL, MOST ROBUST SUMMARIZER PROMPT ---
# # # # In agent.py, replace only this function:
# # # def summarizer_node(state: AgentState):
# # # """This node takes all information and generates the final, professional report."""
# # # # This is the final, most direct prompt to ensure correct hyperlink formatting.
# # # prompt = f"""
# # # You are a report-generating AI. Your only task is to synthesize the provided conversation history into a final, well-formatted Markdown document.
# # # **CRITICAL FORMATTING INSTRUCTION:**
# # # You MUST create clickable Markdown hyperlinks for all resources. The tool's output for a search result looks like this: `{{'url': 'https://www.real-url.com/page', 'content': 'Title of the Page'}}`.
# # # You MUST convert this into the following Markdown format: `[Title of the Page](https://www.real-url.com/page)`
# # # **DO NOT** write the URL in plain text. **DO NOT** add parentheses around the URL without using the square brackets for the text. Follow the `[Text](URL)` syntax precisely.
# # # **Your Task:**
# # # Generate a report with the following structure, using the data from the conversation history and applying the critical formatting instruction above for all links.
# # # ## Overall Summary
# # # (Write a brief, encouraging paragraph here)
# # # ## Detailed Analysis
# # # ### Your Strengths
# # # * (List the strong topics here)
# # # ### Areas for Improvement
# # # * (List the weak topics here)
# # # ## Personalized Recommendations
# # # (Write a short paragraph with actionable advice here)
# # # ## Recommended Resources
# # # (For each weak topic, create a sub-heading and list the resources using the correct hyperlink format)
# # # ### Topic: [Name of Weak Topic 1]
# # # * **Video Tutorial:** [Use the 'content' as text](Use the 'url' as the link)
# # # * **Practice Material:** [Use the 'content' as text](Use the 'url' as the link)
# # # Generate only the final report text in Markdown.
# # # """
# # # response = llm.invoke(state["messages"] + [("user", prompt)])
# # # return {"report_text": response.content}
# # # def should_continue(state: AgentState):
# # # if state["messages"][-1].tool_calls:
# # # return "use_tools"
# # # else:
# # # return "summarize"
# # # # --- 4. Wire up the graph ---
# # # graph = StateGraph(AgentState)
# # # graph.add_node("planner", planner_node)
# # # graph.add_node("tool_node", tool_node)
# # # graph.add_node("summarizer", summarizer_node)
# # # graph.set_entry_point("planner")
# # # graph.add_conditional_edges("planner", should_continue, {"use_tools": "tool_node", "summarize": "summarizer"})
# # # graph.add_edge("tool_node", "summarizer")
# # # graph.add_edge("summarizer", END)
# # # app_graph = graph.compile()
# # # # --- 5. Create a wrapper function for Flask ---
# # # def run_graph_agent(report_data_dict):
# # # try:
# # # initial_state = {"messages": [], "report_data": report_data_dict}
# # # final_state = app_graph.invoke(initial_state, {"recursion_limit": 5})
# # # return {"analysis": final_state.get('report_text', "Error: Could not generate report text.")}
# # # except Exception as e:
# # # return {"analysis": f"An error occurred while generating the report: {e}"}