Files
ARC/backend/app/services/workflow_service.py
Chevallier a7d8914e25 first push
2026-06-12 18:16:58 +02:00

6 lines
188 B
Python

from app.graph.workflow import compiled_graph
async def run_arc_workflow(user_input: str) -> dict:
result = await compiled_graph.ainvoke({"user_input": user_input})
return result