Skip to content

Commit ae7f8fc

Browse files
authored
Fix: fix error url (#615)
1 parent c318d8d commit ae7f8fc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

en/plugins/quick-start/develop-plugins/model-plugin/customizable-model.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ Publish to Dify Marketplace
327327
**Quick Start:**
328328

329329
* [Develop Extension Plugin](../extension-plugin.md)
330-
* [Develop Tool Plugin](../tool-type-plugin.md)
330+
* [Develop Tool Plugin](../tool-plugin.md)
331331
* [Bundle Plugins: Package Multiple Plugins](../bundle.md)
332332

333333
**Plugins Endpoint Docs:**

jp/plugins/quick-start/develop-plugins/extension-plugin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ dify plugin package ./neko
255255
**クイックスタート:**
256256

257257
* [バンドルタイププラグイン:複数のプラグインをまとめる](bundle.md)
258-
* [ツールタイププラグイン:Google検索](tool-type-plugin.md)
258+
* [ツールタイププラグイン:Google検索](tool-plugin.md)
259259
* [モデルタイププラグイン](model/)
260260

261261
**プラグインインターフェースドキュメント:**

zh_CN/plugins/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ description: 'Author: Yeuoly, Allen'
3131
各类 AI 模型的接入插件,支持[模型服务商](quick-start/develop-plugins/model-plugin/integrate-the-predefined-model.md)[自定义模型](quick-start/develop-plugins/model-plugin/customizable-model.md)两种类型,能够极大降低配置和调用 LLM API 的门槛。关于模型插件的开发详情,请参考[快速开始: Model 插件](quick-start/develop-plugins/model-plugin/)
3232
* **Tools(工具)**
3333

34-
工具指的是能够被 Chatflow / Workflow / Agent 类型应用所调用的第三方服务。提供完整的 API 实现能力,用于增强 Dify 应用的能力。例如开发一个 Google 搜索插件,详情请参考[快速开始:Tool 插件](quick-start/develop-plugins/tool-type-plugin.md)
34+
工具指的是能够被 Chatflow / Workflow / Agent 类型应用所调用的第三方服务。提供完整的 API 实现能力,用于增强 Dify 应用的能力。例如开发一个 Google 搜索插件,详情请参考[快速开始:Tool 插件](quick-start/develop-plugins/tool-plugin.md)
3535
* **Agent 策略**
3636

3737
Agent 策略插件能够定义 [Agent 节点](../guides/workflow/node/agent.md)内部的推理和决策逻辑,包括 LLM 对于工具选择、调用以及对返回结果的处理逻辑。关于更多开发指引,请参考[快速开始: Agent 策略插件](quick-start/develop-plugins/agent-strategy-plugin.md)

zh_CN/plugins/quick-start/develop-plugins/model-plugin/customizable-model.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ def _invoke_error_mapping(self) -> dict[type[InvokeError], list[type[Exception]]
326326
**快速开始:**
327327

328328
* [开发 Extension 插件](../extension-plugin.md)
329-
* [开发 Tool 插件](../tool-type-plugin.md)
329+
* [开发 Tool 插件](../tool-plugin.md)
330330
* [Bundle 插件:将多个插件打包](../bundle.md)
331331

332332
**插件接口文档:**

zh_CN/plugins/schema-definition/tool.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Tool
22

3-
在阅读详细的接口文档之前,请确保你已经阅读过[快速开始开发插件:工具](../quick-start/develop-plugins/tool-type-plugin.md),并对 Dify 插件的工具接入流程已有大致了解。
3+
在阅读详细的接口文档之前,请确保你已经阅读过[快速开始开发插件:工具](../quick-start/develop-plugins/tool-plugin.md),并对 Dify 插件的工具接入流程已有大致了解。
44

55
### 数据结构
66

0 commit comments

Comments
 (0)