Files
crewAI/src/crewai/process.py
2025-05-12 13:30:50 +00:00

10 lines
240 B
Python

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