Files
crewAI/crewai/process.py
2023-11-05 14:21:35 -03:00

10 lines
221 B
Python

from enum import Enum
class Process(str, Enum):
"""
Class representing the different processes that can be used to tackle tasks
"""
sequential = 'sequential'
consensual = 'consensual'
hierarchical = 'hierarchical'