mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-05 17:22:36 +00:00
deprecation messages
This commit is contained in:
@@ -1,3 +1,5 @@
|
|||||||
|
> 🚨 This fork has been deprecated. Please use the [official CrewAI repo](https://github.com/joaomdmoura/crewAI).
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -247,6 +247,9 @@ class Crew(BaseModel):
|
|||||||
return Task(**task_config, agent=task_agent)
|
return Task(**task_config, agent=task_agent)
|
||||||
|
|
||||||
def kickoff(self, inputs: Optional[Dict[str, Any]] = {}) -> str:
|
def kickoff(self, inputs: Optional[Dict[str, Any]] = {}) -> str:
|
||||||
|
|
||||||
|
raise DeprecationWarning('🚨 This fork has been deprecated. Please use the official Crew package instead. https://github.com/joaomdmoura/crewAI')
|
||||||
|
|
||||||
"""Starts the crew to work on its assigned tasks."""
|
"""Starts the crew to work on its assigned tasks."""
|
||||||
self._execution_span = self._telemetry.crew_execution_span(self)
|
self._execution_span = self._telemetry.crew_execution_span(self)
|
||||||
self._interpolate_inputs(inputs) # type: ignore # Argument 1 to "_interpolate_inputs" of "Crew" has incompatible type "dict[str, Any] | None"; expected "dict[str, Any]"
|
self._interpolate_inputs(inputs) # type: ignore # Argument 1 to "_interpolate_inputs" of "Crew" has incompatible type "dict[str, Any] | None"; expected "dict[str, Any]"
|
||||||
|
|||||||
Reference in New Issue
Block a user