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 199B

12345678910
  1. from typing import Optional
  2. from pydantic import BaseModel
  3. class AgentNodeStrategyInit(BaseModel):
  4. """Agent node strategy initialization data."""
  5. name: str
  6. icon: Optional[str] = None