Browse Source

删除无用state

wangyang 2 days ago
parent
commit
e05b3823ef
1 changed files with 0 additions and 5 deletions
  1. 0 5
      llmops/workflow_state.py

+ 0 - 5
llmops/workflow_state.py

@@ -83,7 +83,6 @@ class IntegratedWorkflowState(TypedDict):
     # === 基础输入层 (兼容Big Agent) ===
     user_input: str
     question: str  # 别名,兼容报告生成Agent
-
     industry: str  # 行业
 
     # === 数据层 ===
@@ -156,10 +155,6 @@ def create_initial_integrated_state(question: str, industry: str, data: List[Dic
 
         # 数据层
         "data_set": convert_numpy_types(data),
-        "transactions_df": None,
-
-        # 意图识别层
-        "intent_result": None,
 
         # 规划和大纲层
         "planning_step": 0,