test240527 / api /core /entities /agent_entities.py
Xin Zhang
initial dify code
27fd333
raw
history blame contribute delete
166 Bytes
from enum import Enum
class PlanningStrategy(Enum):
ROUTER = 'router'
REACT_ROUTER = 'react_router'
REACT = 'react'
FUNCTION_CALL = 'function_call'