Fix: remove suffix .zh

This commit is contained in:
AllenWriter
2025-05-23 11:12:35 +08:00
parent 830616d45b
commit 06d73584d1
49 changed files with 89 additions and 89 deletions

View File

@@ -48,7 +48,7 @@ Here, `provider` is the plugin ID plus the tool provider name, formatted like `l
### Calling Workflow as Tool
For more information on Workflow as Tool, please refer to the [Tool Plugin documentation](/plugin-dev-en/0222-tool-plugin.mdx). (Note: Original link `/plugin-dev-zh/9223-tool.zh` does not exist in English list, linked to closest match).
For more information on Workflow as Tool, please refer to the [Tool Plugin documentation](/plugin-dev-en/0222-tool-plugin.mdx). (Note: Original link `/plugin-dev-zh/9223-tool` does not exist in English list, linked to closest match).
**Entry Point**
@@ -92,7 +92,7 @@ Here, `provider` is the ID of this tool, and `tool_name` is the `operation_id` f
- [Reverse Invocation App](/plugin-dev-en/9242-reverse-invocation-app.mdx) - Learn how to call Apps within the platform
- [Reverse Invocation Model](/plugin-dev-en/9242-reverse-invocation-model.mdx) - Learn how to call model capabilities within the platform
- [Tool Plugin Development Guide](/plugin-dev-en/0211-getting-started-dify-tool.mdx) - Learn how to develop tool plugins
- [Advanced Tool Plugins](/plugin-dev-en/0222-tool-plugin.mdx) - Learn about advanced features like Workflow as Tool (Note: Original link `/plugin-dev-zh/9223-tool.zh` does not exist in English list, linked to closest match)
- [Advanced Tool Plugins](/plugin-dev-en/0222-tool-plugin.mdx) - Learn about advanced features like Workflow as Tool (Note: Original link `/plugin-dev-zh/9223-tool` does not exist in English list, linked to closest match)
{/*
Contributing Section

View File

@@ -56,7 +56,7 @@ description: 介绍Dify插件的概念、功能和开发价值包括插件类
## 相关资源
- **[模型插件介绍](/plugin-dev-zh/0131-model-plugin-introduction.zh)** - 了解模型插件的基本结构
- **[模型插件介绍](/plugin-dev-zh/0131-model-plugin-introduction)** - 了解模型插件的基本结构
- **[开发实践示例](/plugin-dev-zh/0432-develop-a-slack-bot-plugin)** - 查看实际的插件开发案例
我们期待看到你使用 Dify 插件创造出色的应用和功能!

View File

@@ -138,7 +138,7 @@ Dify 支持多种类型的插件开发:
- **工具插件**: 集成第三方 API 和服务
> 了解更多:[工具插件开发](/plugin-dev-zh/0211-getting-started-dify-tool)
- **模型插件**: 集成 AI 模型
> 了解更多:[模型插件介绍](/plugin-dev-zh/0131-model-plugin-introduction.zh)、[快速接入一个新模型](/plugin-dev-zh/0211-getting-started-new-model)
> 了解更多:[模型插件介绍](/plugin-dev-zh/0131-model-plugin-introduction)、[快速接入一个新模型](/plugin-dev-zh/0211-getting-started-new-model)
- **Agent 策略插件**: 自定义 Agent 思考和决策策略
> 了解更多:[Agent 策略插件](/plugin-dev-zh/9433-agent-strategy-plugin)
- **扩展插件**: 扩展 Dify 平台功能,例如 Endpoint 和 WebAPP

View File

@@ -14,7 +14,7 @@ description: 本文档指导非专业开发者如何为Dify添加新模型
本文将以最简明的方式,带你完成最常见也最简单的贡献:为一个 Dify **已经支持**的模型供应商,添加一个**新型号**的模型。这种方式通常**只需要修改配置文件**,无需编写代码,非常适合作为你的第一个贡献!
> **相关概念**:在开始前,建议你阅读[模型插件](/plugin-dev-zh/0131-model-plugin-introduction.zh)文档,了解模型插件的基本概念和结构。
> **相关概念**:在开始前,建议你阅读[模型插件](/plugin-dev-zh/0131-model-plugin-introduction)文档,了解模型插件的基本概念和结构。
**这种快速接入方式适用于:**

View File

@@ -17,7 +17,7 @@ description: 本文档详细指导如何创建模型供应商插件,包括项
* Dify 插件脚手架工具
* Python 环境,版本号 ≥ 3.12
关于如何准备插件开发的脚手架工具,详细说明请参考[初始化开发工具](/plugin-dev-zh/0221-initialize-development-tools)。在开始之前,建议您先了解[模型插件](/plugin-dev-zh/0131-model-plugin-introduction.zh)的基本概念和结构。
关于如何准备插件开发的脚手架工具,详细说明请参考[初始化开发工具](/plugin-dev-zh/0221-initialize-development-tools)。在开始之前,建议您先了解[模型插件](/plugin-dev-zh/0131-model-plugin-introduction)的基本概念和结构。
### 创建新项目

View File

@@ -89,7 +89,7 @@ description: 本文档详细介绍了Dify插件开发中的通用结构和规范
* `provider` (string): 包含 plugin\_id 的模型供应商名称,形如 `langgenius/openai/openai`。
* `model` (string): 具体的模型名称。
* `model_type` (enum): 模型类型的枚举,可以参考[模型设计规则](/plugin-dev-zh/0411-model-designing-rules#modeltype.zh)文档。
* `model_type` (enum): 模型类型的枚举,可以参考[模型设计规则](/plugin-dev-zh/0411-model-designing-rules#modeltype)文档。
#### NodeResponse

View File

@@ -96,7 +96,7 @@ privacy: "./privacy.md"
* `plugins`(object, required):插件扩展的具体能力的`yaml`文件列表,插件包内的绝对路径,如需要扩展模型,则需要定义一个类似于 `openai.yaml`的文件,并将该文件路径填写在此处,且该路径上的文件必须真实存在,否则打包将失败。
* 格式
* `tools`(list\[string]):插件扩展的[工具](/plugin-dev-zh/0222-tool-plugin)供应商
* `models`(list\[string]):插件扩展的[模型](/plugin-dev-zh/0131-model-plugin-introduction.zh)供应商
* `models`(list\[string]):插件扩展的[模型](/plugin-dev-zh/0131-model-plugin-introduction)供应商
* `endpoints`(list\[string]):插件扩展的 [Endpoints](/plugin-dev-zh/0432-endpoint) 供应商
* `agent_strategies` (list\[string]):插件扩展的 [Agent 策略](/plugin-dev-zh/9433-agent-strategy-plugin)供应商
* 限制

View File

@@ -10,7 +10,7 @@ title: 模型接口
description: 本文档详细介绍了Dify模型插件开发所需的接口规范包括模型供应商实现、五种模型类型LLM、TextEmbedding、Rerank、Speech2text、Text2speech的接口定义以及相关数据结构如PromptMessage、LLMResult等的完整规范。文档适用于开发者实现各种模型集成的开发参考。
---
这里介绍供应商和各模型类型需要实现的接口方法和参数说明。在开发模型插件前,您可能需要首先阅读[模型设计规则](/plugin-dev-zh/0411-model-designing-rules)和[模型插件介绍](/plugin-dev-zh/0131-model-plugin-introduction.zh)。
这里介绍供应商和各模型类型需要实现的接口方法和参数说明。在开发模型插件前,您可能需要首先阅读[模型设计规则](/plugin-dev-zh/0411-model-designing-rules)和[模型插件介绍](/plugin-dev-zh/0131-model-plugin-introduction)。
### 模型供应商
@@ -685,7 +685,7 @@ class RerankDocument(BaseModel):
## 相关资源
- [模型设计规则](/plugin-dev-zh/0411-model-designing-rules) - 了解模型配置的规范
- [模型插件介绍](/plugin-dev-zh/0131-model-plugin-introduction.zh) - 快速了解模型插件的基本概念
- [模型插件介绍](/plugin-dev-zh/0131-model-plugin-introduction) - 快速了解模型插件的基本概念
- [快速接入一个新模型](/plugin-dev-zh/0211-getting-started-new-model) - 学习为已有的供应商添加新模型
- [创建新模型提供者](/plugin-dev-zh/0222-creating-new-model-provider) - 学习如何开发全新的模型供应商

View File

@@ -24,7 +24,7 @@ description: Author YeuolyAllen 本文档详细介绍了Dify插件中Endpoint
#### **结构**
* `settings`(map\[string] [ProviderConfig](/plugin-dev-zh/0411-general-specifications#providerconfig.zh) )Endpoint 配置定义
* `settings`(map\[string] [ProviderConfig](/plugin-dev-zh/0411-general-specifications#providerconfig) )Endpoint 配置定义
* `endpoints`(list\[string], required):指向具体的 `endpoint` 接口定义
```yaml

View File

@@ -46,7 +46,7 @@ description: 本文档详细介绍了插件如何反向调用Dify平台中的工
### 调用 Workflow as Tool
如需了解关于 Workflow as Tool 的更多说明,请参考[工具插件文档](/plugin-dev-zh/9223-tool.zh)。
如需了解关于 Workflow as Tool 的更多说明,请参考[工具插件文档](/plugin-dev-zh/9223-tool)。
**入口**
@@ -90,7 +90,7 @@ description: 本文档详细介绍了插件如何反向调用Dify平台中的工
- [反向调用 App](/plugin-dev-zh/9242-reverse-invocation-app) - 了解如何调用平台内的 App
- [反向调用 Model](/plugin-dev-zh/9242-reverse-invocation-model) - 了解如何调用平台内的模型能力
- [工具插件开发指南](/plugin-dev-zh/0211-getting-started-dify-tool) - 学习如何开发工具插件
- [高级工具插件](/plugin-dev-zh/9223-tool.zh) - 了解 Workflow as Tool 等高级功能
- [高级工具插件](/plugin-dev-zh/9223-tool) - 了解 Workflow as Tool 等高级功能
{/*
Contributing Section

View File

@@ -2,4 +2,4 @@
本指南旨在帮助开发者快速上手 Dify 插件开发,提供必要的文档和资源链接。
贡献指南: [Dify Docs](https://docs.dify.ai/plugin-dev-zh/0411-doc-contribution-guide.zh)
贡献指南: [Dify Docs](https://docs.dify.ai/plugin-dev-zh/0411-doc-contribution-guide)

View File

@@ -19,7 +19,7 @@ DOCS_JSON_PATH = BASE_DIR / "docs.json" # Path to the main documentation structu
# --- MODIFICATION START for FILENAME_PATTERN and FILE_EXTENSION_SUFFIX ---
DEV_ZH = {
"DOCS_DIR_RELATIVE": "plugin-dev-zh", "LANGUAGE_CODE": "简体中文", "FILE_EXTENSION_SUFFIX": "", # MODIFIED: No longer a distinct suffix in filename base
"TARGET_TAB_NAME": "插件开发", "FILENAME_PATTERN": re.compile(r"^(\d{4})-(.*?)\.mdx$"), # MODIFIED: Pattern no longer expects .zh before .mdx
"TARGET_TAB_NAME": "插件开发", "FILENAME_PATTERN": re.compile(r"^(\d{4})-(.*?)\.mdx$"), # MODIFIED: Pattern no longer expects before .mdx
"PWX_TO_GROUP_MAP": {
("0", "1", "1"): ("插件开发", "概念与入门", "概览"), ("0", "1", "3"): ("插件开发", "概念与入门", None),
("0", "2", "1"): ("插件开发", "开发实践", "快速开始"),("0", "2", "2"): ("插件开发", "开发实践", "开发 Dify 插件"),

View File

@@ -10,10 +10,10 @@ title: 最佳实践
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0431-example-overview-and-index.zh
/plugin-dev-zh/0431-example-overview-and-index
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0431-example-overview-and-index.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0431-example-overview-and-index">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -9,10 +9,10 @@ title: 开发 Slack Bot 插件
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0432-develop-a-slack-bot-plugin.zh
/plugin-dev-zh/0432-develop-a-slack-bot-plugin
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0432-develop-a-slack-bot-plugin.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0432-develop-a-slack-bot-plugin">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -9,10 +9,10 @@ title: 输出开发和调试插件过程中的日志
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0222-debugging-logs.zh
/plugin-dev-zh/0222-debugging-logs
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0222-debugging-logs.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0222-debugging-logs">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -11,10 +11,10 @@ description: 'Author: Allen'
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0331-faq.zh
/plugin-dev-zh/0331-faq
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0331-faq.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0331-faq">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -36,7 +36,7 @@ title: 功能简介
<Card
title="新手友好的模型贡献"
icon="rocket"
href="/plugin-dev-zh/0211-getting-started-new-model.zh"
href="/plugin-dev-zh/0211-getting-started-new-model"
horizontal
>
你的第一个开源贡献:通过简单修改配置文件,为 Dify 添加 **新模型**
@@ -86,7 +86,7 @@ title: 功能简介
<Card
title="插件开发文档"
icon="code"
href="/plugin-dev-zh/0111-getting-started-dify-plugin.zh"
href="/plugin-dev-zh/0111-getting-started-dify-plugin"
horizontal
>
访问完整的插件开发者文档学习如何创建、调试和发布你的插件。包含详细的技术指南、API

View File

@@ -10,10 +10,10 @@ title: 发布插件
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0321-release-overview.zh
/plugin-dev-zh/0321-release-overview
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0321-release-overview.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0321-release-overview">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -9,10 +9,10 @@ title: 打包为本地文件与分享
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0322-release-by-file.zh
/plugin-dev-zh/0322-release-by-file
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0322-release-by-file.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0322-release-by-file">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -9,10 +9,10 @@ title: 自动发布插件
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0321-plugin-auto-publish-pr.zh
/plugin-dev-zh/0321-plugin-auto-publish-pr
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0321-plugin-auto-publish-pr.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0321-plugin-auto-publish-pr">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 发布至个人 GitHub 仓库
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0322-release-to-individual-github-repo.zh
/plugin-dev-zh/0322-release-to-individual-github-repo
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0322-release-to-individual-github-repo.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0322-release-to-individual-github-repo">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 发布至 Dify Marketplace
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0322-release-to-dify-marketplace.zh
/plugin-dev-zh/0322-release-to-dify-marketplace
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0322-release-to-dify-marketplace.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0322-release-to-dify-marketplace">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 插件开发者准则
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0312-contributor-covenant-code-of-conduct.zh
/plugin-dev-zh/0312-contributor-covenant-code-of-conduct
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0312-contributor-covenant-code-of-conduct.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0312-contributor-covenant-code-of-conduct">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 插件隐私政策准则
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0312-privacy-protection-guidelines.zh
/plugin-dev-zh/0312-privacy-protection-guidelines
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0312-privacy-protection-guidelines.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0312-privacy-protection-guidelines">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -9,10 +9,10 @@ title: 第三方签名验证
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0312-third-party-signature-verification.zh
/plugin-dev-zh/0312-third-party-signature-verification
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0312-third-party-signature-verification.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0312-third-party-signature-verification">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 插件调试
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0411-remote-debug-a-plugin.zh
/plugin-dev-zh/0411-remote-debug-a-plugin
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-remote-debug-a-plugin.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-remote-debug-a-plugin">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -11,10 +11,10 @@ description: 'Author: Yeuoly, Allen'
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0111-getting-started-dify-plugin.zh
/plugin-dev-zh/0111-getting-started-dify-plugin
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0111-getting-started-dify-plugin.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0111-getting-started-dify-plugin">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -9,10 +9,10 @@ title: Agent 策略插件
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/9433-agent-strategy-plugin.zh
/plugin-dev-zh/9433-agent-strategy-plugin
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9433-agent-strategy-plugin.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9433-agent-strategy-plugin">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: Bundle 插件包
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/9241-bundle.zh
/plugin-dev-zh/9241-bundle
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9241-bundle.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9241-bundle">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: Extension 插件
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/9231-extension-plugin.zh
/plugin-dev-zh/9231-extension-plugin
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9231-extension-plugin.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9231-extension-plugin">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -9,10 +9,10 @@ title: 安装插件开发工具
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0221-initialize-development-tools.zh
/plugin-dev-zh/0221-initialize-development-tools
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0221-initialize-development-tools.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0221-initialize-development-tools">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: Model 插件
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0411-model-plugin-introduction.zh
/plugin-dev-zh/0411-model-plugin-introduction
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-model-plugin-introduction.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-model-plugin-introduction">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 创建模型供应商
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0222-creating-new-model-provider.zh
/plugin-dev-zh/0222-creating-new-model-provider
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0222-creating-new-model-provider.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0222-creating-new-model-provider">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -9,10 +9,10 @@ title: 接入自定义模型
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/9243-customizable-model.zh
/plugin-dev-zh/9243-customizable-model
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9243-customizable-model.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9243-customizable-model">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 接入预定义模型
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0222-creating-new-model-provider-extra.zh
/plugin-dev-zh/0222-creating-new-model-provider-extra
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0222-creating-new-model-provider-extra.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0222-creating-new-model-provider-extra">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: Tool 插件
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0222-tool-plugin.zh
/plugin-dev-zh/0222-tool-plugin
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0222-tool-plugin.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0222-tool-plugin">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: Agent
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/9232-agent.zh
/plugin-dev-zh/9232-agent
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9232-agent.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9232-agent">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ description: 'Author: YeuolyAllen'
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0432-endpoint.zh
/plugin-dev-zh/0432-endpoint
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0432-endpoint.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0432-endpoint">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 通用规范定义
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0411-general-specifications.zh
/plugin-dev-zh/0411-general-specifications
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-general-specifications.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-general-specifications">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ description: 'Author: YeuolyAllen'
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0411-plugin-info-by-manifest.zh
/plugin-dev-zh/0411-plugin-info-by-manifest
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-plugin-info-by-manifest.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-plugin-info-by-manifest">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 模型设计规则
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0411-model-designing-rules.zh
/plugin-dev-zh/0411-model-designing-rules
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-model-designing-rules.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-model-designing-rules">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -9,10 +9,10 @@ title: 模型接口
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0412-model-schema.zh
/plugin-dev-zh/0412-model-schema
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0412-model-schema.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0412-model-schema">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 持久化存储
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0411-persistent-storage-kv.zh
/plugin-dev-zh/0411-persistent-storage-kv
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-persistent-storage-kv.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-persistent-storage-kv">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: 反向调用 Dify 服务
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/9241-reverse-invocation.zh
/plugin-dev-zh/9241-reverse-invocation
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9241-reverse-invocation.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9241-reverse-invocation">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: App
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/9242-reverse-invocation-app.zh
/plugin-dev-zh/9242-reverse-invocation-app
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9242-reverse-invocation-app.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9242-reverse-invocation-app">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: Model
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/9242-reverse-invocation-model.zh
/plugin-dev-zh/9242-reverse-invocation-model
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9242-reverse-invocation-model.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9242-reverse-invocation-model">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: Node
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/9243-reverse-invocation-node.zh
/plugin-dev-zh/9243-reverse-invocation-node
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9243-reverse-invocation-node.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9243-reverse-invocation-node">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: Tool
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/9242-reverse-invocation-tool.zh
/plugin-dev-zh/9242-reverse-invocation-tool
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9242-reverse-invocation-tool.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/9242-reverse-invocation-tool">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>

View File

@@ -10,10 +10,10 @@ title: Tool
本文档为旧版文档,即将弃用。
请勿对此版本进行更改。
所有更新应指向新版本:
/plugin-dev-zh/0411-tool.zh
/plugin-dev-zh/0411-tool
*/}
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-tool.zh">
<Card title="本文档即将弃用" icon="circle-exclamation" href="/plugin-dev-zh/0411-tool">
<p>作为我们文档重组的一部分,此页面正在逐步淘汰。</p>
<p><u><b>点击此卡片</b></u>跳转到包含最新信息的更新版本。</p>