mirror of
https://github.com/langgenius/dify.git
synced 2026-02-24 11:51:21 +08: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
|