mirror of
https://github.com/langgenius/dify.git
synced 2026-03-17 21:07:58 +08:00
9 lines
170 B
Python
9 lines
170 B
Python
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
class AgentStrategyInfo(BaseModel):
|
|
name: str
|
|
icon: str | None = None
|
|
|
|
model_config = ConfigDict(extra="forbid")
|