mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 16:18:30 +00:00
8 lines
242 B
Python
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.")
|