mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
8 lines
132 B
Python
8 lines
132 B
Python
from enum import Enum
|
|
|
|
|
|
class ExitReason(Enum):
|
|
INTENTIONAL = 'intentional'
|
|
INTERRUPTED = 'interrupted'
|
|
ERROR = 'error'
|