您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

agent_entities.py 166B

12345678
  1. from enum import Enum
  2. class PlanningStrategy(Enum):
  3. ROUTER = 'router'
  4. REACT_ROUTER = 'react_router'
  5. REACT = 'react'
  6. FUNCTION_CALL = 'function_call'