6 lines
188 B
Python
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 |