From bc18494c3be6a86cac9ae6086951f9a68ce27687 Mon Sep 17 00:00:00 2001 From: jiazeng Date: Mon, 25 Sep 2023 19:18:59 +0800 Subject: [PATCH] update --- .../custom-tool-package-creation-and-usage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/how-to-guides/develop-custom-tool/custom-tool-package-creation-and-usage.md b/docs/how-to-guides/develop-custom-tool/custom-tool-package-creation-and-usage.md index 7550712fecb9..315e7f803d83 100644 --- a/docs/how-to-guides/develop-custom-tool/custom-tool-package-creation-and-usage.md +++ b/docs/how-to-guides/develop-custom-tool/custom-tool-package-creation-and-usage.md @@ -4,7 +4,7 @@ In this document, we will guide you through the process of developing your own t The custom tool is the prompt flow tool developed by yourself. If you find it useful, you can follow this guidance to make it a tool package. This will enable you to conveniently reuse it, share it with your team, or distribute it to anyone in the world. After successful installation of the package, your custom "tool" will show up in VSCode extension as below: -![custom-tool-list](.../media/contributing/custom-tool-list-in-extension.png) +![custom-tool-list](../../media/contributing/custom-tool-list-in-extension.png) ## Create your own tool package Your tool package should be a python package. To try it quickly, just use [my-tools-package 0.0.1](https://pypi.org/project/my-tools-package/) and skip this section. @@ -115,7 +115,7 @@ hello-world-proj/ ``` * Step3: Go to the extension and open one flow folder. Click 'flow.dag.yaml' and preview the flow. Next, click `+` button and you will see your tools. You may need to reload the windows to clean previous cache if you don't see your tool in the list. -![auto-list-tool-in-extension](.../media/contributing/auto-list-tool-in-extension.png) +![auto-list-tool-in-extension](../../media/contributing/auto-list-tool-in-extension.png) ## FAQ