first stab at early concepts

This commit is contained in:
Joao Moura
2023-10-29 19:51:59 -03:00
parent 6d08ac3229
commit 308349442c
12 changed files with 1720 additions and 1 deletions

7
crewai/crew.py Normal file
View File

@@ -0,0 +1,7 @@
"""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.")