mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 00:58:30 +00:00
6 lines
213 B
Python
6 lines
213 B
Python
from pydantic 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")
|