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