mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 08:38:30 +00:00
10 lines
221 B
Python
10 lines
221 B
Python
from enum import Enum
|
|
|
|
class Process(str, Enum):
|
|
"""
|
|
Class representing the different processes that can be used to tackle tasks
|
|
"""
|
|
sequential = 'sequential'
|
|
consensual = 'consensual'
|
|
hierarchical = 'hierarchical'
|