Files
crewAI/crewai/crew.py
2023-10-29 19:51:59 -03:00

8 lines
242 B
Python

"""Crew of agents."""
from pydantic import BaseModel, Field
class Crew(BaseModel):
description: str = Field(description="Description and of the crew being created.")
goal: str = Field(description="Objective of the crew being created.")