dify / api /core /entities /agent_entities.py
Severian's picture
initial commit
a8b3f00
raw
history blame
166 Bytes
from enum import Enum
class PlanningStrategy(Enum):
ROUTER = "router"
REACT_ROUTER = "react_router"
REACT = "react"
FUNCTION_CALL = "function_call"