Skip to content

Commit 9438c2c

Browse files
🌐 Initial translations for PR #596
Auto-generated translations for documentation changes in PR #596. Last-Processed-Commit: 9ab8c16 Original-PR: #596 Languages: Chinese (zh), Japanese (ja) 🤖 Generated with GitHub Actions
1 parent 57e04ab commit 9438c2c

81 files changed

Lines changed: 1394 additions & 4660 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs.json

Lines changed: 108 additions & 180 deletions
Large diffs are not rendered by default.

ja/api-reference/openapi_chatflow.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,8 @@
484484
{ "$ref": "#/components/parameters/ConversationIdPathParamJp" },
485485
{ "$ref": "#/components/parameters/UserQueryParamJp" },
486486
{ "$ref": "#/components/parameters/LastIdQueryParamJp" },
487-
{ "$ref": "#/components/parameters/LimitQueryParamDefault20Max100Jp" }
487+
{ "$ref": "#/components/parameters/LimitQueryParamDefault20Max100Jp" },
488+
{ "$ref": "#/components/parameters/VariableNameQueryParamJp" }
488489
],
489490
"responses": {
490491
"200": { "description": "会話変数を正常に取得しました。", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ConversationVariablesResponseJp" } } } },
@@ -575,7 +576,8 @@
575576
"ConversationIdQueryParamJp": { "name": "conversation_id", "in": "query", "required": true, "description": "会話ID。", "schema": { "type": "string", "format": "uuid" } },
576577
"LastIdQueryParamJp": { "name": "last_id", "in": "query", "description": "(Optional)現在のページの最後の記録のID、デフォルトはnullです。", "schema": { "type": "string", "format": "uuid", "nullable": true } },
577578
"SortByQueryParamJp": { "name": "sort_by", "in": "query", "description": "(Optional)ソートフィールド、デフォルト:-updated_at(更新時間で降順にソート)。利用可能な値:created_at, -created_at, updated_at, -updated_at。'-'は逆順を表します。", "schema": { "type": "string", "enum": ["created_at", "-created_at", "updated_at", "-updated_at"], "default": "-updated_at" } },
578-
"ConversationIdPathParamJp": { "name": "conversation_id", "in": "path", "required": true, "description": "会話ID。", "schema": { "type": "string", "format": "uuid" } }
579+
"ConversationIdPathParamJp": { "name": "conversation_id", "in": "path", "required": true, "description": "会話ID。", "schema": { "type": "string", "format": "uuid" } },
580+
"VariableNameQueryParamJp": { "name": "variable_name", "in": "query", "description": "(任意)変数名でフィルタリングします。", "schema": { "type": "string" } }
579581
},
580582
"responses": {
581583
"BadRequestGenericJp": { "description": "リクエストパラメータエラー。考えられる原因:invalid_param, app_unavailable, provider_not_initialize, provider_quota_exceeded, model_currently_not_support, completion_request_error。", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ErrorResponseJp" } } } },

ja/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin.mdx

Lines changed: 0 additions & 1095 deletions
This file was deleted.

ja/develop-plugin/dev-guides-and-walkthroughs/cheatsheet.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ python -m main
9494

9595
> 詳細: [プラグインのリモートデバッグ](/ja/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin)
9696
97-
#### 3. パッケージングとデプロイ
97+
#### 4. パッケージングとデプロイ
9898

9999
プラグインをパッケージ化:
100100

ja/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ title: "データソースプラグイン"
1212

1313
読み進める前に、ナレッジパイプラインの基本的な理解とプラグイン開発に関する知識があることを確認してください。関連情報はこちらで確認できます:
1414

15-
- [ステップ2:ナレッジパイプラインオーケストレーション](/ja/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration)
15+
- [ステップ2:ナレッジパイプラインオーケストレーション](/ja/guides/knowledge-base/knowledge-pipeline/knowledge-pipeline-orchestration)
1616
- [Difyプラグイン開発:Hello Worldガイド](/ja/develop-plugin/dev-guides-and-walkthroughs/tool-plugin)
1717

1818
## **データソースプラグインの種類**

ja/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ extra:
160160
source: "endpoints/slack.py"
161161
```
162162

163-
### 2. 関数コードの編集
163+
#### 2. 関数コードの編集
164164

165165
`endpoints/slack.py`ファイルを修正し、以下のコードを追加します:
166166

@@ -239,7 +239,7 @@ class SlackEndpoint(Endpoint):
239239
return Response(status=200, response="ok")
240240
```
241241

242-
### 3. プラグインのデバッグ
242+
### 2. プラグインのデバッグ
243243

244244
Difyプラットフォームに移動し、プラグインのリモートデバッグアドレスとキーを取得します。
245245

@@ -290,15 +290,15 @@ alt="Generated POST Request URL"
290290

291291
---
292292

293-
### 4. プラグインの検証
293+
### 3. プラグインの検証
294294

295295
コード内で、`self.session.app.chat.invoke`がDifyアプリケーションを呼び出すために使用され、`app_id`や`query`などのパラメータを渡します。応答はSlack Botに返されます。`python -m main`を再度実行してプラグインをデバッグ用に再起動し、SlackがDify Appの応答を正しく表示するかどうかを確認します:
296296

297297
![](https://assets-docs.dify.ai/2025/01/6fc872d1343ce8503d63c5222f7f26f9.png)
298298

299299
---
300300

301-
### 5. プラグインのパッケージ化(オプション)
301+
### 4. プラグインのパッケージ化(オプション)
302302

303303
プラグインが正しく動作することを確認したら、以下のコマンドでパッケージ化して名前を付けることができます。実行後、現在のディレクトリに`slack_bot.difypkg`ファイルが作成されます。これが最終的なプラグインパッケージです。詳細なパッケージ化手順については、[ローカルファイルとしてパッケージ化して共有](/ja/develop-plugin/publishing/marketplace-listing/release-by-file)を参照してください。
304304

@@ -312,7 +312,7 @@ dify plugin package ./slack_bot
312312

313313
---
314314

315-
### 6. プラグインの公開(オプション)
315+
### 5. プラグインの公開(オプション)
316316

317317
[Dify Marketplaceリポジトリ](https://github.com/langgenius/dify-plugins)にアップロードして公開できます。公開前に、プラグインが[Dify Marketplace公開ガイドライン](/ja/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace)に準拠していることを確認してください。承認されると、コードはメインブランチにマージされ、プラグインは[Dify Marketplace](https://marketplace.dify.ai/)で公開されます。
318318

ja/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ class FlomoTool(Tool):
287287
</Step>
288288
</Steps>
289289

290-
## ステップ8:パッケージ化と配布
290+
## ステップ9:パッケージ化と配布
291291

292292
プラグインを共有する準備ができたら:
293293

ja/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool.mdx

Lines changed: 0 additions & 276 deletions
This file was deleted.

ja/develop-plugin/dev-guides-and-walkthroughs/tool-plugin.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ class GoogleSearchTool(Tool):
289289

290290
この例は、`serpapi`にリクエストを送信し、`self.create_json_message`を使用してフォーマットされた`json`データ文字列を返すことを意味します。返却データタイプの詳細については、[プラグインのリモートデバッグ](/ja/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin)と[永続ストレージKV](/ja/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv)ドキュメントを参照してください。
291291

292-
#### 5. ツールプロバイダーコードの完成
292+
#### 4. ツールプロバイダーコードの完成
293293

294294
最後に、認証情報の検証ロジックを実装するプロバイダーの実装コードを作成する必要があります。認証情報の検証が失敗した場合、`ToolProviderCredentialValidationError`例外がスローされます。検証が成功すると、`google_search`ツールサービスが正しくリクエストされます。
295295

0 commit comments

Comments
 (0)