Files
crewAI/crewai/process.py
Greyson Lalonde a4e93cea75 Run pre-commit hooks
In the title !
2023-12-27 15:13:42 -05:00

12 lines
257 B
Python

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