Skip to content

Commit

Permalink
final pass
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomdmoura committed Sep 16, 2024
1 parent 8ca0821 commit e5ff036
Show file tree
Hide file tree
Showing 95 changed files with 11,516 additions and 14,677 deletions.
108 changes: 57 additions & 51 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "crewai"
version = "0.56.0"
version = "0.56.23"
description = "Cutting-edge framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks."
authors = ["Joao Moura <joao@crewai.com>"]
readme = "README.md"
Expand Down
14 changes: 14 additions & 0 deletions src/crewai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
import warnings
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


warnings.filterwarnings(
"ignore",
message="Valid config keys have changed in V2:",
)
warnings.filterwarnings(
"ignore",
message="Pydantic serializer warnings:",
category=UserWarning,
module="pydantic.main",
)


__all__ = ["Agent", "Crew", "Process", "Task", "Pipeline", "Router"]
Loading

0 comments on commit e5ff036

Please sign in to comment.