Skip to content

Commit f8d3e2f

Browse files
author
Francisco
committed
fix: correct decision_payload typo in Actions.create call in shell_execution_mixin.py
1 parent 8d88eec commit f8d3e2f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/api/entities_api/orchestration/mixins/file_search_mixin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def handle_file_search(
4848
tool_call_id=tool_call_id,
4949
function_args=arguments_dict,
5050
# [NEW] Pass to API/Service
51-
decision_payload=decision,
51+
decision=decision,
5252
)
5353

5454
LOG.debug(

src/api/entities_api/orchestration/mixins/shell_execution_mixin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def handle_shell_action(
3838
tool_call_id=tool_call_id,
3939
function_args=arguments_dict,
4040
# [NEW] Pass to API/Service
41-
decision_payload=decision,
41+
decision=decision,
4242
)
4343

4444
commands: List[str] = arguments_dict.get("commands", [])

0 commit comments

Comments
 (0)