Remove task completion status message from finish action display (#9977)

Co-authored-by: openhands <openhands@all-hands.dev>
Co-authored-by: Engel Nyst <enyst@users.noreply.github.com>
This commit is contained in:
Xingyao Wang
2025-07-30 16:33:45 -04:00
committed by GitHub
parent 6f44b7352e
commit c2fc84e6ea
14 changed files with 41 additions and 52 deletions

View File

@@ -123,7 +123,6 @@ def response_to_actions(
elif tool_call.function.name == FinishTool['function']['name']:
action = AgentFinishAction(
final_thought=arguments.get('message', ''),
task_completed=arguments.get('task_completed', None),
)
# ================================================