mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
8 lines
143 B
Python
8 lines
143 B
Python
from enum import Enum
|
|
|
|
|
|
class AgentState(str, Enum):
|
|
IDLE = "idle"
|
|
RUNNING = "running"
|
|
COMPLETE = "complete"
|
|
FAILED = "failed"
|