We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d4fb4c commit 92718d5Copy full SHA for 92718d5
1 file changed
temporalio/contrib/langgraph/_plugin.py
@@ -276,6 +276,8 @@ def execute(
276
"""Prepare a node or task to execute as an activity or inline in the workflow."""
277
opts = kwargs or {}
278
execute_in = opts.pop("execute_in")
279
+ # Remove control keys before opts is splatted into execute_activity
280
+ # below; summary_fn is consumed here, not a Temporal activity option.
281
node_summary_fn = opts.pop("summary_fn", None)
282
if node_summary_fn is not None and opts.get("summary") is not None:
283
raise ValueError(
0 commit comments