Skip to content

Commit 96d8477

Browse files
committed
feat:添加StateKey类以支持未来的枚举扩展
1 parent 6242e48 commit 96d8477

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

agents/matmaster_agent/state.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from enum import StrEnum
2+
13
# Special Key
24
BIZ = 'biz'
35

@@ -13,3 +15,7 @@
1315

1416
# Other Key
1517
STEP_DESCRIPTION = 'step_description'
18+
19+
20+
class StateKey(StrEnum):
21+
pass

0 commit comments

Comments
 (0)