Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions openhands-sdk/openhands/sdk/agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,13 +271,6 @@ def step(
# Emit VLLM token ids if enabled
self._maybe_emit_vllm_tokens(llm_response, on_event)

# Finish conversation if LLM produced content (awaits user input)
# Continue if only reasoning without content (e.g., GPT-5 codex thinking)
if has_content:
logger.debug("LLM produced a message response - awaits user input")
state.execution_status = ConversationExecutionStatus.FINISHED
return

def _requires_user_confirmation(
self, state: ConversationState, action_events: list[ActionEvent]
) -> bool:
Expand Down
Loading