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