Files
ARC/backend/app/services/workflow_service.py

6 lines
188 B
Python
Raw Normal View History

2026-06-12 18:16:58 +02:00
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