mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
8 lines
132 B
Python
8 lines
132 B
Python
from enum import Enum
|
|
|
|
|
|
class ExitReason(Enum):
|
|
INTENTIONAL = 'intentional'
|
|
INTERRUPTED = 'interrupted'
|
|
ERROR = 'error'
|