Bumped Software Agent SDK and fixed V1 Delete (#11768)

This commit is contained in:
Tim O'Farrell
2025-11-18 15:52:23 +00:00
committed by GitHub
parent f5611c2188
commit 84c62c4f23
6 changed files with 107 additions and 14 deletions

View File

@@ -113,10 +113,10 @@ class TestConversationRunner:
agent.finish_on_step = 1
convo = Conversation(agent)
# Set security analyzer using the new API to enable confirmation mode
convo.set_security_analyzer(MagicMock())
convo.state.execution_status = (
ConversationExecutionStatus.WAITING_FOR_CONFIRMATION
)
@@ -127,7 +127,7 @@ class TestConversationRunner:
cr, '_handle_confirmation_request', return_value=confirmation
) as mock_confirmation_request:
cr.process_message(message=None)
mock_confirmation_request.assert_called_once()
assert agent.step_count == expected_run_calls
assert convo.state.execution_status == final_status