adding agent vote

This commit is contained in:
Joao Moura
2023-11-05 16:21:22 -03:00
parent 15d4871b52
commit c4f86a60bb
2 changed files with 47 additions and 6 deletions

View File

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