mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 00:58:30 +00:00
adding process and task modules
This commit is contained in:
9
crewai/process.py
Normal file
9
crewai/process.py
Normal file
@@ -0,0 +1,9 @@
|
||||
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'
|
||||
Reference in New Issue
Block a user