mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
feat: support tool plugin id
This commit is contained in:
parent
5bf86ff66d
commit
739e15f88b
|
@ -110,6 +110,12 @@ class PluginEntity(BasePluginEntity):
|
|||
source: PluginInstallationSource
|
||||
meta: Mapping[str, Any]
|
||||
|
||||
@model_validator(mode="after")
|
||||
def set_plugin_id(self):
|
||||
if self.declaration.tool:
|
||||
self.declaration.tool.plugin_id = self.plugin_id
|
||||
return self
|
||||
|
||||
|
||||
class GithubPackage(BaseModel):
|
||||
repo: str
|
||||
|
|
|
@ -377,6 +377,7 @@ class ToolEntity(BaseModel):
|
|||
|
||||
class ToolProviderEntity(BaseModel):
|
||||
identity: ToolProviderIdentity
|
||||
plugin_id: Optional[str] = Field(None, description="The id of the plugin")
|
||||
credentials_schema: list[ProviderConfig] = Field(default_factory=list)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user