mirror of
https://github.com/langgenius/dify.git
synced 2025-11-12 17:34:48 +00:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
9 lines
158 B
Python
9 lines
158 B
Python
from enum import StrEnum, auto
|
|
|
|
|
|
class PlanningStrategy(StrEnum):
|
|
ROUTER = auto()
|
|
REACT_ROUTER = auto()
|
|
REACT = auto()
|
|
FUNCTION_CALL = auto()
|