Skip to content

Commit 823eda4

Browse files
committed
fix: update property name to conform to 0.2
1 parent 672bc10 commit 823eda4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

agntcy_acp/langgraph/acp_node.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def _prepare_run_create(self, state: Any, config: RunnableConfig) -> RunCreateSt
108108
def _handle_run_output(self, state: Any, run_output: RunOutput):
109109
if isinstance(run_output.actual_instance, RunResult):
110110
run_result: RunResult = run_output.actual_instance
111-
self._set_output(state, run_result.result)
111+
self._set_output(state, run_result.values)
112112
elif isinstance(run_output.actual_instance, RunError):
113113
run_error: RunError = run_output.actual_instance
114114
raise ACPRunException(f"Run Failed: {run_error}")

0 commit comments

Comments
 (0)