mirror of
https://github.com/langgenius/dify.git
synced 2025-11-20 23:13:19 +00:00
9 lines
167 B
Python
9 lines
167 B
Python
|
|
from pydantic import BaseModel
|
||
|
|
|
||
|
|
|
||
|
|
class AgentNodeStrategyInit(BaseModel):
|
||
|
|
"""Agent node strategy initialization data."""
|
||
|
|
|
||
|
|
name: str
|
||
|
|
icon: str | None = None
|