mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
8 lines
437 B
Python
8 lines
437 B
Python
# Common timeout message that can be used across different timeout scenarios
|
|
TIMEOUT_MESSAGE_TEMPLATE = (
|
|
"You may wait longer to see additional output by sending empty command '', "
|
|
'send other commands to interact with the current process, '
|
|
'send keys ("C-c", "C-z", "C-d") to interrupt/kill the previous command before sending your new command, '
|
|
'or use the timeout parameter in execute_bash for future commands.'
|
|
)
|