mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 16:18:30 +00:00
clean up prior to PR
This commit is contained in:
@@ -32,13 +32,7 @@ json-repair = "^0.25.2"
|
|||||||
auth0-python = "^4.7.1"
|
auth0-python = "^4.7.1"
|
||||||
poetry = "^1.8.3"
|
poetry = "^1.8.3"
|
||||||
litellm = "^1.44.22"
|
litellm = "^1.44.22"
|
||||||
graphviz = "^0.20.3"
|
|
||||||
matplotlib = "^3.9.2"
|
|
||||||
networkx = "^3.3"
|
|
||||||
ipython = "^8.27.0"
|
|
||||||
pyvis = "^0.3.2"
|
pyvis = "^0.3.2"
|
||||||
playwright = "^1.47.0"
|
|
||||||
pillow = "^10.4.0"
|
|
||||||
|
|
||||||
[tool.poetry.extras]
|
[tool.poetry.extras]
|
||||||
tools = ["crewai-tools"]
|
tools = ["crewai-tools"]
|
||||||
|
|||||||
@@ -1,12 +1,13 @@
|
|||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from crewai.agent import Agent
|
from crewai.agent import Agent
|
||||||
from crewai.crew import Crew
|
from crewai.crew import Crew
|
||||||
|
from crewai.flow import Flow
|
||||||
from crewai.pipeline import Pipeline
|
from crewai.pipeline import Pipeline
|
||||||
from crewai.process import Process
|
from crewai.process import Process
|
||||||
from crewai.routers import Router
|
from crewai.routers import Router
|
||||||
from crewai.task import Task
|
from crewai.task import Task
|
||||||
|
|
||||||
|
|
||||||
warnings.filterwarnings(
|
warnings.filterwarnings(
|
||||||
"ignore",
|
"ignore",
|
||||||
message="Pydantic serializer warnings:",
|
message="Pydantic serializer warnings:",
|
||||||
@@ -14,4 +15,4 @@ warnings.filterwarnings(
|
|||||||
module="pydantic.main",
|
module="pydantic.main",
|
||||||
)
|
)
|
||||||
|
|
||||||
__all__ = ["Agent", "Crew", "Process", "Task", "Pipeline", "Router"]
|
__all__ = ["Agent", "Crew", "Process", "Task", "Pipeline", "Router", "Flow"]
|
||||||
|
|||||||
1
src/crewai/cli/templates/flow/.gitignore
vendored
1
src/crewai/cli/templates/flow/.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
.env
|
.env
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
lib/
|
||||||
|
|||||||
10
src/crewai/flow/__init__.py
Normal file
10
src/crewai/flow/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# from crewai.pipeline.pipeline import Pipeline
|
||||||
|
# from crewai.pipeline.pipeline_kickoff_result import PipelineKickoffResult
|
||||||
|
# from crewai.pipeline.pipeline_output import PipelineOutput
|
||||||
|
|
||||||
|
# __all__ = ["Pipeline", "PipelineKickoffResult", "PipelineOutput"]
|
||||||
|
|
||||||
|
|
||||||
|
from crewai.flow import Flow
|
||||||
|
|
||||||
|
__all__ = ["Flow"]
|
||||||
Reference in New Issue
Block a user