CodeReview_Buddy / src /app /agents /analyzer.py
adityamanwatkar's picture
Update src/app/agents/analyzer.py
dd2e19c verified
raw
history blame contribute delete
235 Bytes
from app.services.llm_service import call_gpt
def analyzer_node(state):
response = call_gpt(
"You are a software architect. Return structured JSON.",
state["prompt"]
)
return {"structured_prompt": response}