Files
crewAI/crewai/agents/agent_vote.py
2023-11-05 18:21:47 -03:00

6 lines
216 B
Python

from pydantic.v1 import BaseModel, Field
class AgentVote(BaseModel):
task: str = Field(description="Task to be executed by the agent")
agent_vote: str = Field(description="Agent that will execute the task")