adityamanwatkar commited on
Commit
dd2e19c
·
verified ·
1 Parent(s): 916083b

Update src/app/agents/analyzer.py

Browse files
Files changed (1) hide show
  1. src/app/agents/analyzer.py +8 -0
src/app/agents/analyzer.py CHANGED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from app.services.llm_service import call_gpt
2
+
3
+ def analyzer_node(state):
4
+ response = call_gpt(
5
+ "You are a software architect. Return structured JSON.",
6
+ state["prompt"]
7
+ )
8
+ return {"structured_prompt": response}