mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 17:18:29 +00:00
- Bump CrewAI version from 0.126.0 to 0.130.0 in pyproject.toml and uv.lock. - Update optional dependency 'crewai-tools' version from 0.46.0 to 0.47.1. - Adjust dependency specifications in CLI templates to reflect the new version.
35 lines
782 B
Python
35 lines
782 B
Python
import warnings
|
|
|
|
from crewai.agent import Agent
|
|
from crewai.crew import Crew
|
|
from crewai.crews.crew_output import CrewOutput
|
|
from crewai.flow.flow import Flow
|
|
from crewai.knowledge.knowledge import Knowledge
|
|
from crewai.llm import LLM
|
|
from crewai.llms.base_llm import BaseLLM
|
|
from crewai.process import Process
|
|
from crewai.task import Task
|
|
from crewai.tasks.llm_guardrail import LLMGuardrail
|
|
from crewai.tasks.task_output import TaskOutput
|
|
|
|
warnings.filterwarnings(
|
|
"ignore",
|
|
message="Pydantic serializer warnings:",
|
|
category=UserWarning,
|
|
module="pydantic.main",
|
|
)
|
|
__version__ = "0.130.0"
|
|
__all__ = [
|
|
"Agent",
|
|
"Crew",
|
|
"CrewOutput",
|
|
"Process",
|
|
"Task",
|
|
"LLM",
|
|
"BaseLLM",
|
|
"Flow",
|
|
"Knowledge",
|
|
"TaskOutput",
|
|
"LLMGuardrail",
|
|
]
|