diff --git a/swarms/structs/schemas.py b/swarms/structs/schemas.py index f7f5441e..901fb452 100644 --- a/swarms/structs/schemas.py +++ b/swarms/structs/schemas.py @@ -155,3 +155,12 @@ class Step(StepRequestBody): False, description="Whether this is the last step in the task.", ) + +class Skill(BaseModel): + name: str + level: int + +class Agent(BaseModel): + name: str + age: int + skills: List[Skill] \ No newline at end of file