You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

agent.py 167B

12345678
  1. from pydantic import BaseModel
  2. class AgentNodeStrategyInit(BaseModel):
  3. """Agent node strategy initialization data."""
  4. name: str
  5. icon: str | None = None