mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 15:48:29 +00:00
10 lines
237 B
Python
10 lines
237 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'
|