mirror of
https://github.com/langgenius/dify.git
synced 2026-02-25 12:16:29 +08:00
11 lines
199 B
Python
11 lines
199 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class AgentNodeStrategyInit(BaseModel):
|
|
"""Agent node strategy initialization data."""
|
|
|
|
name: str
|
|
icon: Optional[str] = None
|