Skip to content

Commit 2c8cc9d

Browse files
authored
Merge pull request #734 from AnguseZhang/refactor/state_key
feat: 添加StateKey类以支持未来的枚举扩展
2 parents 6242e48 + 96d8477 commit 2c8cc9d

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)