From b94378aa00b6ceae58a3613ef22c3ba32e6d1e93 Mon Sep 17 00:00:00 2001 From: Alter-xyz <88554920+alterxyz@users.noreply.github.com> Date: Thu, 19 Jun 2025 16:56:33 +0800 Subject: [PATCH] chore: plugin remove debug env --- en/plugins/best-practice/develop-a-slack-bot-plugin.mdx | 5 ++--- en/plugins/quick-start/debug-plugin.mdx | 5 ++--- .../quick-start/develop-plugins/agent-strategy-plugin.mdx | 5 ++--- en/plugins/quick-start/develop-plugins/extension-plugin.mdx | 5 ++--- en/plugins/quick-start/develop-plugins/tool-plugin.mdx | 5 ++--- ja-jp/plugins/best-practice/develop-a-slack-bot-plugin.mdx | 5 ++--- ja-jp/plugins/quick-start/debug-plugin.mdx | 5 ++--- .../quick-start/develop-plugins/agent-strategy-plugin.mdx | 5 ++--- .../plugins/quick-start/develop-plugins/extension-plugin.mdx | 5 ++--- .../model-plugin/integrate-the-predefined-model.mdx | 5 ++--- ja-jp/plugins/quick-start/develop-plugins/tool-plugin.mdx | 5 ++--- plugin-dev-en/0222-tool-plugin.mdx | 5 ++--- plugin-dev-en/0411-remote-debug-a-plugin.mdx | 5 ++--- plugin-dev-en/0432-develop-a-slack-bot-plugin.mdx | 5 ++--- plugin-dev-en/9231-extension-plugin.mdx | 5 ++--- plugin-dev-en/9433-agent-strategy-plugin.mdx | 5 ++--- plugin-dev-ja/0222-tool-plugin.mdx | 5 ++--- plugin-dev-ja/0411-remote-debug-a-plugin.mdx | 5 ++--- plugin-dev-ja/0432-develop-a-slack-bot-plugin.mdx | 5 ++--- plugin-dev-ja/9231-extension-plugin.mdx | 5 ++--- plugin-dev-ja/9433-agent-strategy-plugin.mdx | 5 ++--- plugin-dev-zh/0222-tool-plugin.mdx | 5 ++--- plugin-dev-zh/0411-remote-debug-a-plugin.mdx | 5 ++--- plugin-dev-zh/9433-agent-strategy-plugin.mdx | 5 ++--- zh-hans/plugins/quick-start/debug-plugin.mdx | 5 ++--- .../quick-start/develop-plugins/agent-strategy-plugin.mdx | 5 ++--- zh-hans/plugins/quick-start/develop-plugins/tool-plugin.mdx | 5 ++--- 27 files changed, 54 insertions(+), 81 deletions(-) diff --git a/en/plugins/best-practice/develop-a-slack-bot-plugin.mdx b/en/plugins/best-practice/develop-a-slack-bot-plugin.mdx index 419290cd..274a1d19 100644 --- a/en/plugins/best-practice/develop-a-slack-bot-plugin.mdx +++ b/en/plugins/best-practice/develop-a-slack-bot-plugin.mdx @@ -261,9 +261,8 @@ Back in your plugin project, copy the `.env.example` file and rename it to `.env ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` Run `python -m main` to start the plugin. You should now see your plugin installed in the Workspace on Dify’s plugin management page. Other team members will also be able to access it. diff --git a/en/plugins/quick-start/debug-plugin.mdx b/en/plugins/quick-start/debug-plugin.mdx index e4d16892..31293277 100644 --- a/en/plugins/quick-start/debug-plugin.mdx +++ b/en/plugins/quick-start/debug-plugin.mdx @@ -35,9 +35,8 @@ Go back to the plugin project, copy the `.env.example` file and rename it to `.e ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` Run the `python -m main` command to start the plugin. You can see on the plugin page that the plugin has been installed into Workspace. Other team members can also access the plugin. diff --git a/en/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx b/en/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx index bc9d7ac5..725696ed 100644 --- a/en/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx +++ b/en/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx @@ -1158,9 +1158,8 @@ Back in your plugin project, copy `.env.example` to `.env` and insert the releva ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` Then run: diff --git a/en/plugins/quick-start/develop-plugins/extension-plugin.mdx b/en/plugins/quick-start/develop-plugins/extension-plugin.mdx index 68bcc6df..108a9c9b 100644 --- a/en/plugins/quick-start/develop-plugins/extension-plugin.mdx +++ b/en/plugins/quick-start/develop-plugins/extension-plugin.mdx @@ -244,9 +244,8 @@ The `.env` file: ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` Run the `python -m main` command to launch the plugin. You can see on the plugin page that the plugin has been installed into Workspace. Other team members can also access the plugin. diff --git a/en/plugins/quick-start/develop-plugins/tool-plugin.mdx b/en/plugins/quick-start/develop-plugins/tool-plugin.mdx index c19b6591..748f055e 100644 --- a/en/plugins/quick-start/develop-plugins/tool-plugin.mdx +++ b/en/plugins/quick-start/develop-plugins/tool-plugin.mdx @@ -334,9 +334,8 @@ The `.env` file: ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` Run the `python -m main` command to launch the plugin. You can see on the plugin page that the plugin has been installed into Workspace. Other team members can also access the plugin. diff --git a/ja-jp/plugins/best-practice/develop-a-slack-bot-plugin.mdx b/ja-jp/plugins/best-practice/develop-a-slack-bot-plugin.mdx index f47168e6..468b9493 100644 --- a/ja-jp/plugins/best-practice/develop-a-slack-bot-plugin.mdx +++ b/ja-jp/plugins/best-practice/develop-a-slack-bot-plugin.mdx @@ -270,9 +270,8 @@ alt="" ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` `python -m main`コマンドを実行してプラグインを起動します。プラグインページで、ワークスペースにこのプラグインがインストールされていることを確認できます。他のチームメンバーもこのプラグインを利用できます。 diff --git a/ja-jp/plugins/quick-start/debug-plugin.mdx b/ja-jp/plugins/quick-start/debug-plugin.mdx index a727aff2..336a233b 100644 --- a/ja-jp/plugins/quick-start/debug-plugin.mdx +++ b/ja-jp/plugins/quick-start/debug-plugin.mdx @@ -32,9 +32,8 @@ title: プラグインのデバッグ方法 ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` `python -m main`コマンドを実行してプラグインを起動します。プラグインページで、Workspaceにインストールされたことを確認できます。他のチームメンバーもこのプラグインを利用可能です。 diff --git a/ja-jp/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx b/ja-jp/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx index bba006ea..d4f11898 100644 --- a/ja-jp/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx +++ b/ja-jp/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx @@ -1160,9 +1160,8 @@ class BasicAgentAgentStrategy(AgentStrategy): ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` `python -m main` コマンドを実行してプラグインを起動します。プラグインページで、プラグインがワークスペースにインストールされたことを確認できます。このプラグインは、他のチームメンバーも利用可能です。 diff --git a/ja-jp/plugins/quick-start/develop-plugins/extension-plugin.mdx b/ja-jp/plugins/quick-start/develop-plugins/extension-plugin.mdx index 4fa8aa5a..f6e0d0b8 100644 --- a/ja-jp/plugins/quick-start/develop-plugins/extension-plugin.mdx +++ b/ja-jp/plugins/quick-start/develop-plugins/extension-plugin.mdx @@ -248,9 +248,8 @@ pip install dify-plugin ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` `python -m main`コマンドを実行してプラグインを起動します。プラグインページで、このプラグインがワークスペースにインストールされたことを確認できます。他のチームメンバーもこのプラグインにアクセス可能です。 diff --git a/ja-jp/plugins/quick-start/develop-plugins/model-plugin/integrate-the-predefined-model.mdx b/ja-jp/plugins/quick-start/develop-plugins/model-plugin/integrate-the-predefined-model.mdx index 295cd622..328e10b2 100644 --- a/ja-jp/plugins/quick-start/develop-plugins/model-plugin/integrate-the-predefined-model.mdx +++ b/ja-jp/plugins/quick-start/develop-plugins/model-plugin/integrate-the-predefined-model.mdx @@ -263,9 +263,8 @@ pricing: ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` `python -m main`コマンドを実行してプラグインを起動します。プラグインページで、そのプラグインがWorkspaceにインストールされていることを確認できます。他のチームメンバーもこのプラグインにアクセスできます。 diff --git a/ja-jp/plugins/quick-start/develop-plugins/tool-plugin.mdx b/ja-jp/plugins/quick-start/develop-plugins/tool-plugin.mdx index 5e4c4f2f..f028f16d 100644 --- a/ja-jp/plugins/quick-start/develop-plugins/tool-plugin.mdx +++ b/ja-jp/plugins/quick-start/develop-plugins/tool-plugin.mdx @@ -358,9 +358,8 @@ alt="" ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` `python -m main` コマンドを実行してプラグインを起動します。プラグインページで、プラグインがワークスペースにインストールされていることを確認できます。これで、他のチームメンバーもこのプラグインを使用できます。 diff --git a/plugin-dev-en/0222-tool-plugin.mdx b/plugin-dev-en/0222-tool-plugin.mdx index d3d2a3cc..9784218c 100644 --- a/plugin-dev-en/0222-tool-plugin.mdx +++ b/plugin-dev-en/0222-tool-plugin.mdx @@ -329,9 +329,8 @@ Return to the plugin project, copy the `.env.example` file and rename it to `.en ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` Run the `python -m main` command to start the plugin. On the plugins page, you can see that the plugin has been installed in the Workspace, and other members of the team can also access the plugin. diff --git a/plugin-dev-en/0411-remote-debug-a-plugin.mdx b/plugin-dev-en/0411-remote-debug-a-plugin.mdx index 34317f66..3d9471d5 100644 --- a/plugin-dev-en/0411-remote-debug-a-plugin.mdx +++ b/plugin-dev-en/0411-remote-debug-a-plugin.mdx @@ -26,9 +26,8 @@ Return to the plugin project, copy the `.env.example` file and rename it to `.en ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` Run the `python -m main` command to start the plugin. On the plugins page, you can see that the plugin has been installed in the Workspace, and other members of the team can also access the plugin. diff --git a/plugin-dev-en/0432-develop-a-slack-bot-plugin.mdx b/plugin-dev-en/0432-develop-a-slack-bot-plugin.mdx index d618fc7c..88c1351b 100644 --- a/plugin-dev-en/0432-develop-a-slack-bot-plugin.mdx +++ b/plugin-dev-en/0432-develop-a-slack-bot-plugin.mdx @@ -250,9 +250,8 @@ Back in your plugin project, copy the `.env.example` file and rename it to `.env ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` Run `python -m main` to start the plugin. You should now see your plugin installed in the Workspace on Dify’s plugin management page. Other team members will also be able to access it. diff --git a/plugin-dev-en/9231-extension-plugin.mdx b/plugin-dev-en/9231-extension-plugin.mdx index db2489fe..bce59c13 100644 --- a/plugin-dev-en/9231-extension-plugin.mdx +++ b/plugin-dev-en/9231-extension-plugin.mdx @@ -237,9 +237,8 @@ Return to the plugin project, copy the `.env.example` file and rename it to `.en ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` Run the `python -m main` command to start the plugin. On the plugins page, you can see that the plugin has been installed in the Workspace. Other team members can also access the plugin. diff --git a/plugin-dev-en/9433-agent-strategy-plugin.mdx b/plugin-dev-en/9433-agent-strategy-plugin.mdx index 45252635..442e1c71 100644 --- a/plugin-dev-en/9433-agent-strategy-plugin.mdx +++ b/plugin-dev-en/9433-agent-strategy-plugin.mdx @@ -1056,9 +1056,8 @@ Back in your plugin project, copy `.env.example` to `.env` and insert the releva ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` Then run: diff --git a/plugin-dev-ja/0222-tool-plugin.mdx b/plugin-dev-ja/0222-tool-plugin.mdx index 00d1bca7..0dd6856f 100644 --- a/plugin-dev-ja/0222-tool-plugin.mdx +++ b/plugin-dev-ja/0222-tool-plugin.mdx @@ -325,9 +325,8 @@ class GoogleProvider(ToolProvider): ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` `python -m main` コマンドを実行してプラグインを起動します。プラグインページで、このプラグインがWorkspaceにインストールされていることが確認でき、チームの他のメンバーもこのプラグインにアクセスできます。 diff --git a/plugin-dev-ja/0411-remote-debug-a-plugin.mdx b/plugin-dev-ja/0411-remote-debug-a-plugin.mdx index d72f5f2e..825decb4 100644 --- a/plugin-dev-ja/0411-remote-debug-a-plugin.mdx +++ b/plugin-dev-ja/0411-remote-debug-a-plugin.mdx @@ -23,9 +23,8 @@ description: このドキュメントでは、Dify のリモートデバッグ ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` `python -m main` コマンドを実行してプラグインを起動します。「プラグイン」ページで、このプラグインがワークスペース内にインストールされていることが確認でき、チームの他のメンバーもこのプラグインにアクセスできます。 diff --git a/plugin-dev-ja/0432-develop-a-slack-bot-plugin.mdx b/plugin-dev-ja/0432-develop-a-slack-bot-plugin.mdx index 78daf4e3..cd4d46f8 100644 --- a/plugin-dev-ja/0432-develop-a-slack-bot-plugin.mdx +++ b/plugin-dev-ja/0432-develop-a-slack-bot-plugin.mdx @@ -259,9 +259,8 @@ Dify プラットフォームにアクセスし、Dify プラグインのリモ ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` `python -m main` コマンドを実行してプラグインを起動します。プラグインページで、このプラグインがワークスペースにインストールされていることが確認できます。他のチームメンバーもこのプラグインにアクセスできます。 diff --git a/plugin-dev-ja/9231-extension-plugin.mdx b/plugin-dev-ja/9231-extension-plugin.mdx index 5dcca6b8..7b54b299 100644 --- a/plugin-dev-ja/9231-extension-plugin.mdx +++ b/plugin-dev-ja/9231-extension-plugin.mdx @@ -233,9 +233,8 @@ pip install dify-plugin ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` 运行 `python -m main` 命令启动插件。在插件页即可看到该插件已被安装至 Workspace 内。其他团队成员也可以访问该插件。 diff --git a/plugin-dev-ja/9433-agent-strategy-plugin.mdx b/plugin-dev-ja/9433-agent-strategy-plugin.mdx index bc717c72..032c26f1 100644 --- a/plugin-dev-ja/9433-agent-strategy-plugin.mdx +++ b/plugin-dev-ja/9433-agent-strategy-plugin.mdx @@ -1051,9 +1051,8 @@ class BasicAgentAgentStrategy(AgentStrategy): ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` `python -m main` コマンドを実行してプラグインを起動します。プラグインページで、このプラグインが Workspace にインストールされていることを確認できます。他のチームメンバーもこのプラグインにアクセスできます。 diff --git a/plugin-dev-zh/0222-tool-plugin.mdx b/plugin-dev-zh/0222-tool-plugin.mdx index f67c600d..7e180bc4 100644 --- a/plugin-dev-zh/0222-tool-plugin.mdx +++ b/plugin-dev-zh/0222-tool-plugin.mdx @@ -325,9 +325,8 @@ class GoogleProvider(ToolProvider): ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` 运行 `python -m main` 命令启动插件。在插件页即可看到该插件已被安装至 Workspace 内,团队中的其他成员也可以访问该插件。 diff --git a/plugin-dev-zh/0411-remote-debug-a-plugin.mdx b/plugin-dev-zh/0411-remote-debug-a-plugin.mdx index d3987aa0..92bd911f 100644 --- a/plugin-dev-zh/0411-remote-debug-a-plugin.mdx +++ b/plugin-dev-zh/0411-remote-debug-a-plugin.mdx @@ -22,9 +22,8 @@ description: 本文档介绍了如何使用Dify的远程调试功能来测试插 ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` 运行 `python -m main` 命令启动插件。在插件页即可看到该插件已被安装至 Workspace 内,团队中的其他成员也可以访问该插件。 diff --git a/plugin-dev-zh/9433-agent-strategy-plugin.mdx b/plugin-dev-zh/9433-agent-strategy-plugin.mdx index c7ce2ab1..96010e03 100644 --- a/plugin-dev-zh/9433-agent-strategy-plugin.mdx +++ b/plugin-dev-zh/9433-agent-strategy-plugin.mdx @@ -1141,9 +1141,8 @@ class BasicAgentAgentStrategy(AgentStrategy): ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` 运行 `python -m main` 命令启动插件。在插件页即可看到该插件已被安装至 Workspace 内。其他团队成员也可以访问该插件。 diff --git a/zh-hans/plugins/quick-start/debug-plugin.mdx b/zh-hans/plugins/quick-start/debug-plugin.mdx index 27263830..ad5fe9cc 100644 --- a/zh-hans/plugins/quick-start/debug-plugin.mdx +++ b/zh-hans/plugins/quick-start/debug-plugin.mdx @@ -33,9 +33,8 @@ title: 插件调试 ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` 运行 `python -m main` 命令启动插件。在插件页即可看到该插件已被安装至 Workspace 内,团队中的其他成员也可以访问该插件。 diff --git a/zh-hans/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx b/zh-hans/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx index c64f6f4c..6caf9864 100644 --- a/zh-hans/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx +++ b/zh-hans/plugins/quick-start/develop-plugins/agent-strategy-plugin.mdx @@ -1161,9 +1161,8 @@ class BasicAgentAgentStrategy(AgentStrategy): ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` 运行 `python -m main` 命令启动插件。在插件页即可看到该插件已被安装至 Workspace 内。其他团队成员也可以访问该插件。 diff --git a/zh-hans/plugins/quick-start/develop-plugins/tool-plugin.mdx b/zh-hans/plugins/quick-start/develop-plugins/tool-plugin.mdx index 999ba33a..720766f1 100644 --- a/zh-hans/plugins/quick-start/develop-plugins/tool-plugin.mdx +++ b/zh-hans/plugins/quick-start/develop-plugins/tool-plugin.mdx @@ -336,9 +336,8 @@ class GoogleProvider(ToolProvider): ```bash INSTALL_METHOD=remote -REMOTE_INSTALL_HOST=remote -REMOTE_INSTALL_PORT=5003 -REMOTE_INSTALL_KEY=****-****-****-****-**** +REMOTE_INSTALL_URL=debug.dify.ai:5003 +REMOTE_INSTALL_KEY=********-****-****-****-************ ``` 运行 `python -m main` 命令启动插件。在插件页即可看到该插件已被安装至 Workspace 内,团队中的其他成员也可以访问该插件。