Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion python/dify_plugin/integration/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
ModelActions,
PluginInvokeType,
ToolActions,
DatasourceActions,
TriggerActions,
)

T = TypeVar("T", bound=BaseModel)
Expand All @@ -18,7 +20,7 @@
class PluginInvokeRequest(BaseModel, Generic[T]):
invoke_id: str
type: PluginInvokeType
action: AgentActions | ToolActions | ModelActions | EndpointActions
action: AgentActions | ToolActions | ModelActions | EndpointActions | DatasourceActions | TriggerActions
request: T


Expand Down
Loading