Skip to content

Commit

Permalink
rephrase
Browse files Browse the repository at this point in the history
  • Loading branch information
SmartManoj committed Sep 24, 2024
1 parent 6ad6913 commit 254e88f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion openhands/llm/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,6 @@ def wrapper(*args, **kwargs):
) and source == 'Agent':
# int
continue_on_step = int(continue_on_step_env)
# logger.info(f'{self.reload_counter=} {continue_on_step=}')
if self.reload_counter < continue_on_step:
model_config = os.getenv('model_config')
if model_config:
Expand Down
2 changes: 1 addition & 1 deletion openhands/runtime/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ async def run(self, action: CmdRunAction) -> CmdOutputObservation:
'Please use agentskills for file operations.'
)
elif ' -m unittest' in command:
output = '[Please use pytest.]'
output = '[Please run the tests using pytest.]'
elif command.lower() == 'ctrl+c':
output, exit_code = self._interrupt_bash(
timeout=SOFT_TIMEOUT_SECONDS
Expand Down

0 comments on commit 254e88f

Please sign in to comment.