mirror of https://github.com/langgenius/dify.git
Merge branch 'fix/chore-fix' into dev/plugin-deploy
This commit is contained in:
commit
6246cf047b
|
|
@ -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