Merge pull request #154 from zhanluxianshen/update-github

update Github--> GitHub
This commit is contained in:
Jing Y.
2025-05-27 11:37:02 +08:00
committed by GitHub
15 changed files with 17 additions and 17 deletions

View File

@@ -64,7 +64,7 @@ Using a LLM hosted on GPUStack as an example:
![add-gpustack-llm](https://assets-docs.dify.ai/2025/04/8178418f93ccea1668564d8bd9777303.png)
For more information about GPUStack, please refer to [Github Repo](https://github.com/gpustack/gpustack).
For more information about GPUStack, please refer to [GitHub Repo](https://github.com/gpustack/gpustack).
{/*
Contributing Section

View File

@@ -53,7 +53,7 @@ Currently supported model types:
* `tts`: Text to speech
* `moderation`: Content moderation
Taking `Anthropic` as an example, since its model series only contains LLM type models, you only need to create an `/llm` folder under the `/models` path and add yaml files for different model versions. For detailed code structure, please refer to the [Github repository](https://github.com/langgenius/dify-official-plugins/tree/main/models/anthropic/models/llm).
Taking `Anthropic` as an example, since its model series only contains LLM type models, you only need to create an `/llm` folder under the `/models` path and add yaml files for different model versions. For detailed code structure, please refer to the [GitHub repository](https://github.com/langgenius/dify-official-plugins/tree/main/models/anthropic/models/llm).
![](https://assets-docs.dify.ai/2024/12/b5ef5d7c759742e4c4d34865e8608843.png)
@@ -102,7 +102,7 @@ If the model provider contains multiple types of large models, e.g., the OpenAI
│ └── tts.py
```
It is recommended to prepare all model configurations before starting the model code implementation. For complete YAML rules, please refer to the [Model Design Rules](/en/plugins/schema-definition/model/model-designing-rules). For more code details, please refer to the example [Github repository](https://github.com/langgenius/dify-official-plugins/tree/main/models).
It is recommended to prepare all model configurations before starting the model code implementation. For complete YAML rules, please refer to the [Model Design Rules](/en/plugins/schema-definition/model/model-designing-rules). For more code details, please refer to the example [GitHub repository](https://github.com/langgenius/dify-official-plugins/tree/main/models).
### 2. Writing Model Requesting Code
@@ -199,7 +199,7 @@ def _invoke_error_mapping(self) -> dict[type[InvokeError], list[type[Exception]]
"""
```
See the [Github code repository](https://github.com/langgenius/dify-official-plugins/blob/main/models/anthropic/models/llm/llm.py) for full code details.
See the [GitHub code repository](https://github.com/langgenius/dify-official-plugins/blob/main/models/anthropic/models/llm/llm.py) for full code details.
### **3.** Add Predefined Model Configurations

View File

@@ -21,7 +21,7 @@ title: Endpoint
<p>If you notice any discrepancies or areas needing improvement in the new documentation, please use the "Report an issue" button at the bottom of the page.</p>
</Card>
In this article, we will use the [Quick Start: Rainbow Cat project](../quick-start/develop-plugins/extension-plugin) as an example to illustrate the structure of Endpoint within the plugin. For the complete plugin code, please refer to the [Github repository](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples/neko).
In this article, we will use the [Quick Start: Rainbow Cat project](../quick-start/develop-plugins/extension-plugin) as an example to illustrate the structure of Endpoint within the plugin. For the complete plugin code, please refer to the [GitHub repository](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples/neko).
### **Group Definition**

View File

@@ -27,7 +27,7 @@ If this file's format is incorrect, both the plugin parsing and packaging proces
### **Code Example**
Below is a simple example of a Manifest file. The meaning and function of each data element will be explained below. For reference to other plugin codes, please check the [Github repository](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples).
Below is a simple example of a Manifest file. The meaning and function of each data element will be explained below. For reference to other plugin codes, please check the [GitHub repository](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples).
```yaml
version: 0.0.1

View File

@@ -11,7 +11,7 @@ title: 支援を求める
Difyのアカウント情報やその他の情報をコミュニティに投稿しないでください。また、サポートスタッフもアカウント情報を要求することはありません。
</Info>
* [Github](https://github.com/langgenius/dify) 上でイシューを提出
* [GitHub](https://github.com/langgenius/dify) 上でイシューを提出
* [Discord](https://discord.gg/8Tpq4AcN9c)コミュニティに参加
### お問い合わせ

View File

@@ -64,7 +64,7 @@ GPUStackにホストされたLLMを使用する方法の例です
![add-gpustack-llm](https://assets-docs.dify.ai/2025/04/8178418f93ccea1668564d8bd9777303.png)
GPUStackに関する詳細情報は、[Github Repo](https://github.com/gpustack/gpustack)を参照してください。
GPUStackに関する詳細情報は、[GitHub Repo](https://github.com/gpustack/gpustack)を参照してください。
{/*
Contributing Section

View File

@@ -20,7 +20,7 @@ title: Endpointエンドポイント
<p>新しいドキュメントに不一致や改善が必要な箇所を見つけた場合は、ページ下部の「問題を報告」ボタンを使用してください。</p>
</Card>
この記事では、プラグイン内のエンドポイントの構造を説明するために、[クイックスタート:レインボーキャットプロジェクト](/ja-jp/plugins/quick-start/develop-plugins/extension-plugin)を例として取り上げます。完全なプラグインコードは、[Github](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples/neko)で確認できます。
この記事では、プラグイン内のエンドポイントの構造を説明するために、[クイックスタート:レインボーキャットプロジェクト](/ja-jp/plugins/quick-start/develop-plugins/extension-plugin)を例として取り上げます。完全なプラグインコードは、[GitHub](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples/neko)で確認できます。
### **グループの定義**

View File

@@ -328,7 +328,7 @@ dify plugin package ./slack_bot
### 参考文献
完全な Dify プラグインのプロジェクトコードを確認したい場合は、[Github コードリポジトリ](https://github.com/langgenius/dify-plugins)にアクセスしてください。その他、他のプラグインの完全なコードと詳細を確認できます。
完全な Dify プラグインのプロジェクトコードを確認したい場合は、[GitHub コードリポジトリ](https://github.com/langgenius/dify-plugins)にアクセスしてください。その他、他のプラグインの完全なコードと詳細を確認できます。
さらに多くのプラグインについて知りたい場合は、以下の内容を参照してください。

View File

@@ -14,7 +14,7 @@ description: 著者 Yeuoly、Allen このドキュメントでは、レインボ
title: Endpointエンドポイント
---
この記事では、プラグイン内のエンドポイントの構造を説明するために、[クイックスタート:レインボーキャットプロジェクト](/ja-jp/plugins/quick-start/develop-plugins/extension-plugin)を例として取り上げます。完全なプラグインコードは、[Github](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples/neko)で確認できます。
この記事では、プラグイン内のエンドポイントの構造を説明するために、[クイックスタート:レインボーキャットプロジェクト](/ja-jp/plugins/quick-start/develop-plugins/extension-plugin)を例として取り上げます。完全なプラグインコードは、[GitHub](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples/neko)で確認できます。
### **グループの定義**

View File

@@ -328,7 +328,7 @@ dify plugin package ./slack_bot
### 参考阅读
如果你想要查看完整 Dify 插件的项目代码,请前往 [Github 代码仓库](https://github.com/langgenius/dify-plugins)。除此之外,你可以看到其它插件的完整代码与具体细节。
如果你想要查看完整 Dify 插件的项目代码,请前往 [GitHub 代码仓库](https://github.com/langgenius/dify-plugins)。除此之外,你可以看到其它插件的完整代码与具体细节。
如果想要了解更多插件,请参考以下内容。

View File

@@ -10,7 +10,7 @@ title: 彩虹猫 Endpoint
description: Author YeuolyAllen 本文档详细介绍了Dify插件中Endpoint的结构和实现方式以彩虹猫项目为例。内容包括如何定义Endpoint组、配置接口、实现_invoke方法以及处理请求和响应。文档详细解释了各种YAML配置字段的含义和使用方法。
---
本文将以[彩虹猫](/plugin-dev-zh/9231-extension-plugin)项目为例,说明插件内的 Endpoint 的结构。Endpoint是插件对外暴露的HTTP接口可用于与外部系统集成。完整的插件代码请参考 [Github 仓库](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples/neko)。
本文将以[彩虹猫](/plugin-dev-zh/9231-extension-plugin)项目为例,说明插件内的 Endpoint 的结构。Endpoint是插件对外暴露的HTTP接口可用于与外部系统集成。完整的插件代码请参考 [GitHub 仓库](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples/neko)。
### 组定义

View File

@@ -10,7 +10,7 @@ title: 寻求支持
请不要将涉及你的 Dify 账户信息与其它密钥信息发至社区,我们的支持人员也不会索要你的账户信息。
</Info>
* 在 [Github](https://github.com/langgenius/dify) 上提交 Issue
* 在 [GitHub](https://github.com/langgenius/dify) 上提交 Issue
* 加入 [Discord ](https://discord.gg/8Tpq4AcN9c)社群
### 联系我们

View File

@@ -324,7 +324,7 @@ dify plugin package ./slack_bot
### 参考阅读
如果你想要查看完整 Dify 插件的项目代码,请前往 [Github 代码仓库](https://github.com/langgenius/dify-plugins)。除此之外,你可以看到其它插件的完整代码与具体细节。
如果你想要查看完整 Dify 插件的项目代码,请前往 [GitHub 代码仓库](https://github.com/langgenius/dify-plugins)。除此之外,你可以看到其它插件的完整代码与具体细节。
如果想要了解更多插件,请参考以下内容。

View File

@@ -102,7 +102,7 @@ title: 接入预定义模型
│ └── tts.py
```
建议将所有模型配置都准备完毕后再开始模型代码的实现,完整的 YAML 规则请参考[模型设计规则](../../../schema-definition/model/model-designing-rules)。如需查看更多代码详情,请参考示例 [Github 代码仓库](https://github.com/langgenius/dify-official-plugins/tree/main/models)。
建议将所有模型配置都准备完毕后再开始模型代码的实现,完整的 YAML 规则请参考[模型设计规则](../../../schema-definition/model/model-designing-rules)。如需查看更多代码详情,请参考示例 [GitHub 代码仓库](https://github.com/langgenius/dify-official-plugins/tree/main/models)。
### 2. **编写模型调用代码**

View File

@@ -21,7 +21,7 @@ description: 'Author: YeuolyAllen'
<p>如果您在新的文档中发现任何差异或需要改进的地方,请使用页面底部的“报告问题”按钮。</p>
</Card>
本文将以[彩虹猫](../quick-start/develop-plugins/extension-plugin)项目为例,说明插件内的 Endpoint 的结构。完整的插件代码请参考 [Github 仓库](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples/neko)。
本文将以[彩虹猫](../quick-start/develop-plugins/extension-plugin)项目为例,说明插件内的 Endpoint 的结构。完整的插件代码请参考 [GitHub 仓库](https://github.com/langgenius/dify-plugin-sdks/tree/main/python/examples/neko)。
### 组定义