Compare commits

..

2 Commits

Author SHA1 Message Date
Eduardo Chiarotti
dc4291996e Merge branch 'main' into fix/pre-commit-all-files 2024-08-23 10:50:51 -03:00
Eduardo Chiarotti
d1aee5450f fix: All files pre commit 2024-08-23 10:49:58 -03:00
2 changed files with 4 additions and 5 deletions

View File

@@ -32,8 +32,8 @@ Each input creates its own run, flowing through all stages of the pipeline. Mult
## Pipeline Attributes
| Attribute | Parameters | Description |
| :--------- | :--------- | :---------------------------------------------------------------------------------------------- |
| Attribute | Parameters | Description |
| :--------- | :--------- | :------------------------------------------------------------------------------------ |
| **Stages** | `stages` | A list of crews, lists of crews, or routers representing the stages to be executed in sequence. |
## Creating a Pipeline
@@ -239,7 +239,7 @@ email_router = Router(
pipeline=normal_pipeline
)
},
default=Pipeline(stages=[normal_pipeline]) # Default to just normal if no urgency score
default=Pipeline(stages=[normal_pipeline]) # Default to just classification if no urgency score
)
# Use the router in a main pipeline

View File

@@ -2,7 +2,6 @@ from crewai.agent import Agent
from crewai.crew import Crew
from crewai.pipeline import Pipeline
from crewai.process import Process
from crewai.routers import Router
from crewai.task import Task
__all__ = ["Agent", "Crew", "Process", "Task", "Pipeline", "Router"]
__all__ = ["Agent", "Crew", "Process", "Task", "Pipeline"]