mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-05 04:38:37 +08:00
9 lines
166 B
Python
9 lines
166 B
Python
from enum import Enum
|
|
|
|
|
|
class PlanningStrategy(Enum):
|
|
ROUTER = 'router'
|
|
REACT_ROUTER = 'react_router'
|
|
REACT = 'react'
|
|
FUNCTION_CALL = 'function_call'
|