mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 00:58:30 +00:00
first stab at early concepts
This commit is contained in:
7
crewai/crew.py
Normal file
7
crewai/crew.py
Normal 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.")
|
||||
Reference in New Issue
Block a user