mirror of
https://github.com/langgenius/dify.git
synced 2026-02-26 04:27:41 +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
|