From 96d84774822f583c31eac27f369c520dc4066499 Mon Sep 17 00:00:00 2001 From: Rasic2 <1051987201@qq.com> Date: Sun, 8 Feb 2026 15:06:28 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E6=B7=BB=E5=8A=A0StateKey?= =?UTF-8?q?=E7=B1=BB=E4=BB=A5=E6=94=AF=E6=8C=81=E6=9C=AA=E6=9D=A5=E7=9A=84?= =?UTF-8?q?=E6=9E=9A=E4=B8=BE=E6=89=A9=E5=B1=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- agents/matmaster_agent/state.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/agents/matmaster_agent/state.py b/agents/matmaster_agent/state.py index ba8f910a..35cc9384 100644 --- a/agents/matmaster_agent/state.py +++ b/agents/matmaster_agent/state.py @@ -1,3 +1,5 @@ +from enum import StrEnum + # Special Key BIZ = 'biz' @@ -13,3 +15,7 @@ # Other Key STEP_DESCRIPTION = 'step_description' + + +class StateKey(StrEnum): + pass