starting agent voting system

This commit is contained in:
Joao Moura
2023-11-05 17:44:09 -03:00
parent c936181cc1
commit ca0ce2b353
3 changed files with 27 additions and 3 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")