mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
12 lines
249 B
Python
12 lines
249 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'
|