Spaces:
Sleeping
Sleeping
Update src/app/agents/analyzer.py
Browse files
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}
|