Spaces:
Sleeping
Sleeping
| 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} |