From 1f5281dcdb4aa4a0be020ae923ce931b3809e573 Mon Sep 17 00:00:00 2001 From: Riskey <36894937+RiskeyL@users.noreply.github.com> Date: Wed, 29 Apr 2026 18:42:30 +0800 Subject: [PATCH 1/3] docs: 1.14 fixes for HITL events and Creator Center env vars (#764) * docs: reorganize chatflow API tags and surface workflow_run_id * refactor: update internal tooling for dify-graphon repo split * fix: surface workflow_run_id in HITL stream events * chore: tighten env-vars skill source-of-truth rule * docs: document Creator Center env vars * fix: use language-prefixed paths for non-api-reference links * fix: drop redundant workflow_run_id from workflow HITL events * fix: drop format uuid from chatflow HITL workflow_run_id --- .claude/skills/dify-docs-env-vars/SKILL.md | 14 +++++- .../skills/dify-docs-env-vars/deep-dive.md | 36 ++++++++++++- .../dify-docs-feature-research/SKILL.md | 50 +++++++++++++++---- .../skills/dify-docs-release-sync/SKILL.md | 26 ++++++---- AGENTS.md | 2 +- en/api-reference/openapi_chatflow.json | 48 ++++++++++-------- en/api-reference/openapi_workflow.json | 6 +-- en/self-host/configuration/environments.mdx | 12 ++++- ja/api-reference/openapi_chatflow.json | 48 ++++++++++-------- ja/api-reference/openapi_workflow.json | 6 +-- ja/self-host/configuration/environments.mdx | 26 +++++++--- writing-guides/index.md | 2 +- zh/api-reference/openapi_chatflow.json | 48 ++++++++++-------- zh/api-reference/openapi_workflow.json | 6 +-- zh/self-host/configuration/environments.mdx | 14 +++++- 15 files changed, 238 insertions(+), 106 deletions(-) diff --git a/.claude/skills/dify-docs-env-vars/SKILL.md b/.claude/skills/dify-docs-env-vars/SKILL.md index 315e92a56..59c75aa39 100644 --- a/.claude/skills/dify-docs-env-vars/SKILL.md +++ b/.claude/skills/dify-docs-env-vars/SKILL.md @@ -17,6 +17,18 @@ Read these shared guides: 2. `writing-guides/formatting-guide.md` 3. `writing-guides/glossary.md` +## Source of Truth: `docker/.env.example` + +The doc mirrors `docker/.env.example`, the supported self-host knob surface. + +| Var location | Action | +|---|---| +| In `.env.example`, uncommented | Document. | +| In `.env.example`, commented (`#FOO=bar`) | Document; add to **Verifier false positives** in `ignored-vars.md` (the verifier can't parse defaults from comments). | +| Only in `api/configs/` Pydantic, not in `.env.example` | **Don't document.** Upstream-deferred; file a PR adding it to `.env.example` first. | + +The verifier's "extra in docs" signal is not an escape hatch. Never suppress it for Pydantic-only vars via `ignored-vars.md`. + ## Four-Step Process **Pull the latest Dify code** before tracing. In the Dify codebase directory: @@ -143,7 +155,7 @@ Some variables in `.env.example` are deliberately not documented (Cloud-only, ex - Remove a variable from the docs as Cloud-only → add it under **Cloud-only (SaaS)** in `ignored-vars.md`. - Skip documenting an experimental or internal flag → add it under **Experimental / internal**. -- Document a supported variable whose `.env.example` entry is commented out → add it under **Verifier false positives**. +- Document a supported variable whose `.env.example` entry is **commented out** (e.g., `#FOO=bar`) → add it under **Verifier false positives**. This bucket is **only** for vars that exist in `.env.example` in commented form. Do not use it to suppress verifier signal for vars that are absent from `.env.example` entirely — those are upstream-deferred (see [Source of Truth](#source-of-truth-docker-env-example)) and must not be documented. Every entry must include a source reference (PR, commit, or audit date). diff --git a/.claude/skills/dify-docs-env-vars/deep-dive.md b/.claude/skills/dify-docs-env-vars/deep-dive.md index a63628935..3f0557928 100644 --- a/.claude/skills/dify-docs-env-vars/deep-dive.md +++ b/.claude/skills/dify-docs-env-vars/deep-dive.md @@ -287,9 +287,9 @@ This is primarily a developer/debugging tool. Not recommended for production due **Key code locations:** - Definition: `api/configs/deploy/__init__.py` -- Workflow debug: `api/core/workflow/workflow_entry.py` +- Workflow debug: `api/core/workflow/workflow_entry.py` (entry); `graphon/src/graphon/graph_engine/layers/debug_logging.py` (DebugLoggingLayer; lives in the graphon repo) - Tool callbacks: `api/core/callback_handler/agent_tool_callback_handler.py` -- LLM logging: `api/dify_graph/model_runtime/model_providers/__base/large_language_model.py` +- LLM logging: `graphon/src/graphon/model_runtime/model_providers/base/large_language_model.py` (graphon repo) --- @@ -1479,3 +1479,35 @@ The existing entry near line 937 describes behavior correctly, but the stated de ### POSTGRES_MAX_CONNECTIONS — default correction Covered in the "PostgreSQL / MySQL Performance Tuning Variables" section. `docker/.env.example` bumped the default from `100` to `200` upstream (`docker-compose.yaml` passes it as `-c max_connections=${POSTGRES_MAX_CONNECTIONS:-200}` to the Postgres container). The higher default is safer for Dify's multi-worker + Celery + async-task traffic shape; operators can still lower it on constrained hosts. + +--- + +### CREATORS_PLATFORM_FEATURES_ENABLED, CREATORS_PLATFORM_API_URL, CREATORS_PLATFORM_OAUTH_CLIENT_ID + +Creator Center is the submission portal where users upload Dify apps as DSL templates. Submitted templates are reviewed and, once approved, listed on Dify Marketplace. The console's **Publish to Marketplace** button (i18n key `common.publishToMarketplace` in `web/i18n/{en-US,zh-Hans,ja-JP}/workflow.json`) drives this flow. + +**Flow:** + +1. User clicks **Publish to Marketplace** in the app builder. The button is gated on `systemFeatures.enable_creators_platform` (frontend: `web/app/components/app/app-publisher/index.tsx`). +2. Frontend calls `POST /apps/{app_id}/publish-to-creators-platform`. +3. Endpoint (`api/controllers/console/app/app.py: AppPublishToCreatorsPlatformApi`) returns 403 when `CREATORS_PLATFORM_FEATURES_ENABLED` is false. Otherwise it exports the app DSL via `AppDslService.export_dsl(include_secret=False)`. +4. `core/helper/creators.upload_dsl()` POSTs the DSL to `{CREATORS_PLATFORM_API_URL}/api/v1/templates/anonymous-upload` and receives a `claim_code`. +5. `get_redirect_url()` builds the redirect with `?dsl_claim_code=...`. If `CREATORS_PLATFORM_OAUTH_CLIENT_ID` is non-empty, it also signs an OAuth authorization code via `OAuthServerService.sign_oauth_authorization_code(client_id, user_account_id)` and adds `&oauth_code=...`. +6. Frontend opens the redirect URL in a new tab, taking the user into Creator Center to fill in template details. + +**Behavior by var state:** + +- `CREATORS_PLATFORM_FEATURES_ENABLED=false`: button hidden, console API returns 403. Self-hosters use this to remove the one-click publish path. +- `CREATORS_PLATFORM_API_URL` overridden: only meaningful with a self-hosted Creator Center instance. Default `https://creators.dify.ai`. +- `CREATORS_PLATFORM_OAUTH_CLIENT_ID` empty (default): anonymous upload — the receiving Creator Center cannot attribute the template to the publishing user. + +**Key code locations:** + +- Pydantic config: `api/configs/feature/__init__.py` (`CreatorsPlatformConfig`) +- Service exposure: `api/services/feature_service.py` (`enable_creators_platform`) +- Console controller: `api/controllers/console/app/app.py` (`AppPublishToCreatorsPlatformApi`) +- Upload helper: `api/core/helper/creators.py` +- Frontend trigger: `web/app/components/app/app-publisher/index.tsx` +- UI labels: `common.publishToMarketplace` in `web/i18n/{en-US,zh-Hans,ja-JP}/workflow.json` + +**Naming note:** Env var prefix is `CREATORS_PLATFORM_*` and the backend Pydantic class is `CreatorsPlatformConfig`, but the user-facing product name is **Creator Center** and the UI button reads "Publish to Marketplace" (templates appear on Marketplace after Creator Center review). Use "Creator Center" in user-facing prose; the prefix is a backend-only artifact. diff --git a/.claude/skills/dify-docs-feature-research/SKILL.md b/.claude/skills/dify-docs-feature-research/SKILL.md index 4b9e434c8..978b21319 100644 --- a/.claude/skills/dify-docs-feature-research/SKILL.md +++ b/.claude/skills/dify-docs-feature-research/SKILL.md @@ -10,18 +10,30 @@ Pre-writing research that combines codebase analysis with community feedback to ## Before Starting 1. Ask the user which feature, node, or area to research. -2. Confirm which branch of the Dify codebase to investigate (default: `main`). +2. Confirm which branch to investigate (default: `main` for both repos). 3. Check if the user has a specific doc page in mind for the rewrite. -**Codebase location**: The Dify codebase is typically available as an additional working directory. If not, ask the user for the path. +**Codebase location**: Dify's backend logic is split across two repos. -**Pull latest code** before investigating. In the Dify codebase directory: +| Repo | Local path (typical) | GitHub | Owns | +|:-----|:---------------------|:-------|:-----| +| dify | `~/Documents/Work/Dify Repo/dify` | `langgenius/dify` | API, web, orchestration, integration nodes (Agent, Knowledge, Datasource, Trigger), Celery tasks | +| graphon | `~/Documents/Work/Dify Repo/graphon` | `langgenius/graphon` | Graph engine, runtime, model_runtime, built-in workflow nodes, HTTP/file/protocols | + +If either is missing as a working directory, ask the user for the path. + +**Pull latest code** before investigating. Run in each repo directory: ```bash git fetch origin && git checkout main && git pull origin main ``` -If the user specified a different branch, substitute accordingly. +If the user specified a different branch for either repo, substitute accordingly. -**GitHub repo**: `langgenius/dify` +**Version pinning matters.** dify pins graphon to a specific version. Before reading graphon code, check the pinned version and verify against that tag, not graphon `main`: +```bash +grep '"graphon' ~/Documents/Work/Dify\ Repo/dify/api/pyproject.toml +# e.g. "graphon~=0.2.2" → check out v0.2.2 in graphon, not main +``` +If you read graphon `main` and document behavior that ships only in an unreleased graphon version, the docs will not match what users see. When in doubt, ask the user whether to verify against the pinned version or graphon `main` (the latter is appropriate when documenting something the user knows is about to ship). ## Research Process @@ -29,19 +41,31 @@ Run Phase 1 and Phase 2 in parallel using subagents where possible. ### Phase 1: Codebase Investigation -Locate and read the source code for the feature. Cover all three layers: +First decide which repo owns the backend implementation: -**Backend implementation** — Find the core logic. For workflow nodes, check `api/dify_graph/nodes//`. Read: +| Feature class | Repo | Path | +|:--------------|:-----|:-----| +| Built-in workflow nodes (LLM, Code, HTTP Request, If/Else, Loop, Iteration, Parameter Extractor, Document Extractor, List Operator, Variable Aggregator/Assigner, Question Classifier, Template Transform, Tool, Start/End/Answer, Human Input) | graphon | `src/graphon/nodes//` | +| Integration nodes (Agent, Knowledge Retrieval, Knowledge Index, Datasource, Trigger Plugin/Schedule/Webhook) | dify | `api/core/workflow/nodes//` | +| Graph engine, runtime state, variable pool, command channels, layers | graphon | `src/graphon/graph_engine/`, `src/graphon/runtime/` | +| Model runtime, model providers, LLM/embedding/rerank invocation | graphon | `src/graphon/model_runtime/` | +| Workflow orchestration in Flask routes and Celery tasks | dify | `api/controllers/`, `api/tasks/`, `api/services/` | +| RAG and knowledge retrieval logic | dify | `api/core/rag/` | +| Tool plugins | dify | `api/core/tools/` | + +Then locate and read the source code, covering all three layers: + +**Backend implementation** — Find the core logic in the repo identified above. Read: - The main node class (execution logic, `_run()` method) - Entity definitions (data models, enums, supported types) - Any template or streaming logic -**Frontend UI** — Find the React components. For workflow nodes, check `web/app/components/workflow/nodes//`. Read: +**Frontend UI** — Find the React components in the dify repo (the web frontend was not split out). For workflow nodes, check `web/app/components/workflow/nodes//`. Read: - Panel component (what configuration options users see) - Type definitions (data shape) - Default values and validation rules -**API surface** — Trace how the feature's output reaches the API response. Check controllers, response converters, and serialization. +**API surface** — Trace how the feature's output reaches the API response. Check controllers, response converters, and serialization (all in dify). Produce a summary of: - What the feature does (based on code, not existing docs) @@ -56,13 +80,19 @@ Flag any behavior inferred from code rather than observed in the running product Search for user-reported problems and questions across these channels: -**GitHub Issues** — Run multiple searches with varied terms: +**GitHub Issues** — Run multiple searches with varied terms. Always search dify; also search graphon when the feature is a built-in workflow node, the graph engine, runtime, or model_runtime: ```bash gh issue list --repo langgenius/dify --search "" --limit 30 gh issue list --repo langgenius/dify --search "" --limit 30 gh search issues " " --repo langgenius/dify --limit 20 + +# For built-in nodes, engine, runtime, or model_runtime, also: +gh issue list --repo langgenius/graphon --search "" --limit 30 +gh search issues " " --repo langgenius/graphon --limit 20 ``` +End users typically file in dify even for graphon-owned behavior; graphon's tracker tends to hold engineering-side reports. Check both to avoid missing pain points. + **GitHub Discussions** — Search for related discussion topics: ```bash gh api "repos/langgenius/dify/discussions?per_page=30" --jq '.[] | select(.title | test(""; "i"))' diff --git a/.claude/skills/dify-docs-release-sync/SKILL.md b/.claude/skills/dify-docs-release-sync/SKILL.md index a65b0a147..6894eba50 100644 --- a/.claude/skills/dify-docs-release-sync/SKILL.md +++ b/.claude/skills/dify-docs-release-sync/SKILL.md @@ -102,17 +102,21 @@ Also check: Pydantic models and `fields/` serializers used by Service API contro Read the PR description for context. Map changed source paths to likely doc areas: -| Source path pattern | Likely doc area | -|---|---| -| `api/core/workflow/nodes/` | `en/use-dify/workflow/nodes/` | -| `api/core/rag/` | `en/use-dify/knowledge/` | -| `api/core/model_runtime/` | `en/use-dify/model-providers/` | -| `api/core/tools/` | `en/use-dify/tools/` or workflow tool node docs | -| `api/core/agent/` | `en/use-dify/build-apps/agent.mdx` | -| `api/core/app/` | `en/use-dify/build-apps/` | -| `web/app/components/` | UI-related docs (check PR description for specifics) | -| `docker/`, deployment configs | `en/getting-started/install/` | -| `api/configs/` | Configuration/environment variable docs | +| Repo | Source path pattern | Likely doc area | +|---|---|---| +| dify | `api/core/workflow/nodes/` (integration nodes only: agent, knowledge, datasource, trigger) | `en/use-dify/workflow/nodes/` | +| dify | `api/core/rag/` | `en/use-dify/knowledge/` | +| dify | `api/core/tools/` | `en/use-dify/tools/` or workflow tool node docs | +| dify | `api/core/agent/` | `en/use-dify/build-apps/agent.mdx` | +| dify | `api/core/app/` | `en/use-dify/build-apps/` | +| dify | `web/app/components/` | UI-related docs (check PR description for specifics) | +| dify | `docker/`, deployment configs | `en/getting-started/install/` | +| dify | `api/configs/` | Configuration/environment variable docs | +| graphon | `src/graphon/nodes/` (built-in nodes: llm, code, http_request, if_else, loop, iteration, parameter_extractor, document_extractor, list_operator, variable_aggregator/assigner, question_classifier, template_transform, tool, start/end/answer, human_input) | `en/use-dify/workflow/nodes/` | +| graphon | `src/graphon/model_runtime/` | `en/use-dify/model-providers/` | +| graphon | `src/graphon/graph_engine/`, `src/graphon/runtime/` | workflow engine behavior, execution semantics | + +When checking dify PRs, also scan recent merges in `langgenius/graphon` for the same release window. A user-visible workflow change may ship as a graphon release plus a dify pin bump (look for changes to `api/pyproject.toml` and `api/uv.lock`). **Important**: These mappings are heuristic. For every candidate match: diff --git a/AGENTS.md b/AGENTS.md index 75cbbb8c8..30866ea6d 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -15,7 +15,7 @@ For task-specific guidance, see `writing-guides/index.md`. - Write in English only, except when specifically optimizing Chinese or Japanese translations. - Only edit the English section in `docs.json`. Translation sections sync automatically. - MDX files require `title` and `description` in YAML frontmatter. -- When writing about a feature, verify behavior against the Dify codebase, not just existing docs. Existing docs may be outdated or completely wrong. When rewriting a page, treat every claim in the original as unverified. Check field names, types, required/optional status, and behavior descriptions against the current code. Never carry forward details from legacy docs without independent verification. +- When writing about a feature, verify behavior against the Dify codebase, not just existing docs. Existing docs may be outdated or completely wrong. When rewriting a page, treat every claim in the original as unverified. Check field names, types, required/optional status, and behavior descriptions against the current code. Never carry forward details from legacy docs without independent verification. The backend is split across two repos: built-in workflow nodes, the graph engine, runtime, and model_runtime live in the `graphon` repo (version-pinned in `dify/api/pyproject.toml`); integration nodes (Agent, Knowledge, Datasource, Trigger), orchestration, RAG, and tools stay in `dify`. Verify against the graphon version actually pinned by dify, not graphon `main`. - For new features, the user may specify a development branch. Code on development branches may be in flux—when behavior is ambiguous, ask rather than assume. - When adding or updating internal-only instructions, tooling, configs, or other non-public files, ensure all paths that should not be exposed by Mintlify are covered in `.mintignore`. - Never use `--no-verify` when committing. diff --git a/en/api-reference/openapi_chatflow.json b/en/api-reference/openapi_chatflow.json index 1cb8e7b15..a93aeb296 100644 --- a/en/api-reference/openapi_chatflow.json +++ b/en/api-reference/openapi_chatflow.json @@ -29,7 +29,7 @@ "description": "Send a request to the chat application.", "operationId": "sendAdvancedChatMessage", "tags": [ - "Chats" + "Chatflows" ], "requestBody": { "description": "Request body to send a chat message.", @@ -304,14 +304,14 @@ "description": "Stops a chat message generation task. Only supported in `streaming` mode.", "operationId": "stopAdvancedChatMessageGeneration", "tags": [ - "Chats" + "Chatflows" ], "parameters": [ { "name": "task_id", "in": "path", "required": true, - "description": "Task ID, can be obtained from the streaming chunk return of the [Send Chat Message](/api-reference/chats/send-chat-message) API.", + "description": "Task ID, can be obtained from the streaming chunk return of the [Send Chat Message](/api-reference/chatflows/send-chat-message) API.", "schema": { "type": "string" } @@ -374,7 +374,7 @@ "description": "Get next questions suggestions for the current message.", "operationId": "getAdvancedSuggestedQuestions", "tags": [ - "Chats" + "Chatflows" ], "parameters": [ { @@ -2550,7 +2550,7 @@ "description": "Retrieve the current execution results of a workflow task based on the workflow execution ID.", "operationId": "getChatflowWorkflowRunDetail", "tags": [ - "Workflow Runs" + "Chatflows" ], "parameters": [ { @@ -2639,7 +2639,7 @@ "description": "Retrieve paginated workflow execution logs with filtering options.", "operationId": "listChatflowWorkflowLogs", "tags": [ - "Workflow Runs" + "Chatflows" ], "parameters": [ { @@ -2788,7 +2788,7 @@ "schema": { "type": "string" }, - "description": "Access token for the paused form, returned in the `human_input_required` event from [Send Chat Message](/api-reference/chats/send-chat-message) in streaming mode." + "description": "Access token for the paused form, returned in the `human_input_required` event from [Send Chat Message](/api-reference/chatflows/send-chat-message) in streaming mode." } ], "responses": { @@ -2967,7 +2967,7 @@ "Human Input" ], "summary": "Submit Human Input Form", - "description": "Submit the recipient's response to a paused Human Input form. The workflow resumes on acceptance; use [Stream Workflow Events](/api-reference/human-input/stream-workflow-events) to follow subsequent events. Requires **WebApp** delivery.", + "description": "Submit the recipient's response to a paused Human Input form. The workflow resumes on acceptance; use [Stream Workflow Events](/api-reference/chatflows/stream-workflow-events) to follow subsequent events. Requires **WebApp** delivery.", "operationId": "submitChatflowHumanInputForm", "parameters": [ { @@ -2977,7 +2977,7 @@ "schema": { "type": "string" }, - "description": "Access token for the paused form, returned in the `human_input_required` event from [Send Chat Message](/api-reference/chats/send-chat-message) in streaming mode." + "description": "Access token for the paused form, returned in the `human_input_required` event from [Send Chat Message](/api-reference/chatflows/send-chat-message) in streaming mode." } ], "requestBody": { @@ -3114,7 +3114,7 @@ "/workflow/{task_id}/events": { "get": { "tags": [ - "Human Input" + "Chatflows" ], "summary": "Stream Workflow Events", "description": "Resume the Server-Sent Events stream for a workflow run after a pause or a dropped SSE connection. For runs that have already finished, the stream emits a single `workflow_finished` event and closes.", @@ -3128,7 +3128,7 @@ "type": "string", "format": "uuid" }, - "description": "Workflow run ID returned by the original [Send Chat Message](/api-reference/chats/send-chat-message) request." + "description": "Workflow run ID returned by the original [Send Chat Message](/api-reference/chatflows/send-chat-message) request." }, { "name": "user", @@ -3930,7 +3930,7 @@ "external_user_id": { "type": "string", "nullable": true, - "description": "The `user` identifier provided in API requests (e.g., the `user` field in [Send Chat Message](/api-reference/chats/send-chat-message))." + "description": "The `user` identifier provided in API requests (e.g., the `user` field in [Send Chat Message](/api-reference/chatflows/send-chat-message))." }, "name": { "type": "string", @@ -5898,6 +5898,10 @@ { "type": "object", "properties": { + "workflow_run_id": { + "type": "string", + "description": "Workflow execution run ID." + }, "data": { "type": "object", "properties": { @@ -6024,7 +6028,7 @@ "workflow_run_id": { "type": "string", "format": "uuid", - "description": "Persistent identifier for this workflow run record. Use this with [Get Workflow Run Detail](/api-reference/workflows/get-workflow-run-detail) to retrieve results after execution." + "description": "Persistent identifier for this workflow run record. Use this with [Get Workflow Run Detail](/api-reference/chatflows/get-workflow-run-detail) to retrieve results after execution." }, "paused_nodes": { "type": "array", @@ -6085,6 +6089,10 @@ { "type": "object", "properties": { + "workflow_run_id": { + "type": "string", + "description": "Workflow execution run ID." + }, "data": { "type": "object", "properties": { @@ -6125,6 +6133,10 @@ { "type": "object", "properties": { + "workflow_run_id": { + "type": "string", + "description": "Workflow execution run ID." + }, "data": { "type": "object", "properties": { @@ -6654,8 +6666,8 @@ }, "tags": [ { - "name": "Chats", - "description": "Operations related to chat messages and interactions." + "name": "Chatflows", + "description": "Operations for Chatflow apps, including chat messaging, workflow run details, and event streaming." }, { "name": "Files", @@ -6685,13 +6697,9 @@ "name": "Annotations", "description": "Operations related to managing annotations for direct replies." }, - { - "name": "Workflow Runs", - "description": "Operations related to workflow execution details and logs." - }, { "name": "Human Input", - "description": "Endpoints for resuming paused workflows that require human input and for streaming workflow events." + "description": "Endpoints for resuming paused workflows that require human input." } ] } diff --git a/en/api-reference/openapi_workflow.json b/en/api-reference/openapi_workflow.json index e227f565d..1327c257c 100644 --- a/en/api-reference/openapi_workflow.json +++ b/en/api-reference/openapi_workflow.json @@ -1745,7 +1745,7 @@ "Human Input" ], "summary": "Submit Human Input Form", - "description": "Submit the recipient's response to a paused Human Input form. The workflow resumes on acceptance; use [Stream Workflow Events](/api-reference/human-input/stream-workflow-events) to follow subsequent events. Requires **WebApp** delivery.", + "description": "Submit the recipient's response to a paused Human Input form. The workflow resumes on acceptance; use [Stream Workflow Events](/api-reference/workflows/stream-workflow-events) to follow subsequent events. Requires **WebApp** delivery.", "operationId": "submitWorkflowHumanInputForm", "parameters": [ { @@ -1892,7 +1892,7 @@ "/workflow/{task_id}/events": { "get": { "tags": [ - "Human Input" + "Workflows" ], "summary": "Stream Workflow Events", "description": "Resume the Server-Sent Events stream for a workflow run after a pause or a dropped SSE connection. For runs that have already finished, the stream emits a single `workflow_finished` event and closes.", @@ -4343,7 +4343,7 @@ }, { "name": "Human Input", - "description": "Endpoints for resuming paused workflows that require human input and for streaming workflow events." + "description": "Endpoints for resuming paused workflows that require human input." } ] } diff --git a/en/self-host/configuration/environments.mdx b/en/self-host/configuration/environments.mdx index 060d6ee55..046091438 100644 --- a/en/self-host/configuration/environments.mdx +++ b/en/self-host/configuration/environments.mdx @@ -181,7 +181,7 @@ Only effective when starting with Docker image or Docker Compose. | `SERVER_WORKER_CLASS` | `gevent` | Gunicorn worker type. `gevent` provides lightweight async concurrency. Set to `geventwebsocket.gunicorn.workers.GeventWebSocketWorker` when `ENABLE_COLLABORATION_MODE` is `true`; left at `gevent`, WebSocket handshakes fail silently. Other values break psycopg2 and gRPC patching. | | `SERVER_WORKER_CONNECTIONS` | `10` | Maximum concurrent connections per worker. Only applies to async workers (gevent). If you experience connection rejections or slow responses under load, try increasing this value. | | `GUNICORN_TIMEOUT` | `360` | If a worker doesn't respond within this many seconds, Gunicorn kills and restarts it. Set to 360 (6 minutes) to support long-lived SSE connections used for streaming LLM responses. | -| `CELERY_WORKER_CLASS` | (empty; defaults to gevent) | Celery worker type. Same gevent patching requirements as `SERVER_WORKER_CLASS`—it is strongly discouraged to change. | +| `CELERY_WORKER_CLASS` | (empty; defaults to gevent) | Celery worker type with the same gevent patching requirements as `SERVER_WORKER_CLASS`. Strongly discouraged to change. | | `CELERY_WORKER_AMOUNT` | `4` | Number of Celery worker processes. Only used when autoscaling is disabled. Lower it on constrained VMs; for elastic throughput, enable `CELERY_AUTO_SCALE` instead of raising this. | | `CELERY_AUTO_SCALE` | `false` | Enable dynamic autoscaling. When enabled, Celery monitors queue depth and spawns/kills workers between `CELERY_MIN_WORKERS` and `CELERY_MAX_WORKERS`. | | `CELERY_MAX_WORKERS` | (empty; defaults to CPU count) | Maximum workers when autoscaling is enabled. | @@ -1335,6 +1335,16 @@ The plugin daemon is a separate service that manages plugin lifecycle (installat | `PLUGIN_MAX_EXECUTION_TIMEOUT` | `600` | Plugin execution timeout in seconds (plugin daemon side). Should match `PLUGIN_DAEMON_TIMEOUT` on the API side. | | `PIP_MIRROR_URL` | (empty) | Custom PyPI mirror URL used by the plugin daemon when installing plugin dependencies. Useful for faster installs or air-gapped environments. | +## Creator Center Configuration + +Creator Center (`creators.dify.ai`) is the submission portal where users upload Dify apps as templates. Submitted templates are reviewed and, once approved, listed on Dify Marketplace. The console's **Publish to Marketplace** action exports the app's DSL and uploads it to Creator Center on the user's behalf. See [Publish Apps to Marketplace](/en/use-dify/publish/publish-to-marketplace) for the user-facing flow. + +| Variable | Default | Description | +|---|---|---| +| `CREATORS_PLATFORM_FEATURES_ENABLED` | `true` | Controls whether the **Publish to Marketplace** action appears in the app builder. Set to `false` to hide the action; the underlying console API also returns 403. Useful on deployments where users shouldn't have a one-click path to submit templates externally. | +| `CREATORS_PLATFORM_API_URL` | `https://creators.dify.ai` | Endpoint that receives DSL uploads from the **Publish to Marketplace** action. Change only if running a self-hosted Creator Center instance. | +| `CREATORS_PLATFORM_OAUTH_CLIENT_ID` | (empty) | OAuth client ID issued by Creator Center. When set, the post-upload redirect carries an OAuth authorization code so Creator Center can attribute the submission to the publishing user. Empty means anonymous upload. | + ## OTLP / OpenTelemetry Configuration OpenTelemetry provides distributed tracing and metrics collection. When enabled, Dify instruments Flask and exports telemetry data to an OTLP collector. diff --git a/ja/api-reference/openapi_chatflow.json b/ja/api-reference/openapi_chatflow.json index 621dfa41c..50fd020ee 100644 --- a/ja/api-reference/openapi_chatflow.json +++ b/ja/api-reference/openapi_chatflow.json @@ -29,7 +29,7 @@ "description": "チャットアプリケーションにリクエストを送信します。", "operationId": "sendChatflowMessageJp", "tags": [ - "チャットメッセージ" + "チャットフロー" ], "requestBody": { "description": "チャットメッセージを送信するためのリクエストボディ。", @@ -304,14 +304,14 @@ "description": "チャットメッセージ生成タスクを停止します。`streaming` モードでのみサポートされます。", "operationId": "stopChatflowMessageGenerationJp", "tags": [ - "チャットメッセージ" + "チャットフロー" ], "parameters": [ { "name": "task_id", "in": "path", "required": true, - "description": "タスク ID です。[チャットメッセージを送信](/api-reference/チャットメッセージ/チャットメッセージを送信) API のストリーミングチャンクレスポンスから取得できます。", + "description": "タスク ID です。[チャットメッセージを送信](/api-reference/チャットフロー/チャットメッセージを送信) API のストリーミングチャンクレスポンスから取得できます。", "schema": { "type": "string" } @@ -374,7 +374,7 @@ "description": "現在のメッセージに対する次の質問の提案を取得します。", "operationId": "getChatflowSuggestedQuestionsJp", "tags": [ - "チャットメッセージ" + "チャットフロー" ], "parameters": [ { @@ -2550,7 +2550,7 @@ "description": "ワークフロー実行 ID に基づいて、ワークフロータスクの現在の実行結果を取得します。", "operationId": "getChatflowWorkflowRunDetailJa", "tags": [ - "ワークフロー実行" + "チャットフロー" ], "parameters": [ { @@ -2639,7 +2639,7 @@ "description": "フィルタリングオプション付きでワークフロー実行ログをページネーションで取得します。", "operationId": "listChatflowWorkflowLogsJa", "tags": [ - "ワークフロー実行" + "チャットフロー" ], "parameters": [ { @@ -2788,7 +2788,7 @@ "schema": { "type": "string" }, - "description": "一時停止フォームのアクセストークン。ストリーミングモードで [チャットメッセージを送信](/api-reference/チャットメッセージ/チャットメッセージを送信) が返す `human_input_required` イベントから取得します。" + "description": "一時停止フォームのアクセストークン。ストリーミングモードで [チャットメッセージを送信](/api-reference/チャットフロー/チャットメッセージを送信) が返す `human_input_required` イベントから取得します。" } ], "responses": { @@ -2967,7 +2967,7 @@ "人間の入力" ], "summary": "人間の入力フォームを送信", - "description": "一時停止中の人間の入力フォームに対する受信者の応答を送信します。フォームが受理されるとワークフローが再開するため、後続のイベントは [ワークフローイベントをストリーム](/api-reference/人間の入力/ワークフローイベントをストリーム) で受信してください。**WebApp** 配信が必要です。", + "description": "一時停止中の人間の入力フォームに対する受信者の応答を送信します。フォームが受理されるとワークフローが再開するため、後続のイベントは [ワークフローイベントをストリーム](/api-reference/チャットフロー/ワークフローイベントをストリーム) で受信してください。**WebApp** 配信が必要です。", "operationId": "submitChatflowHumanInputForm", "parameters": [ { @@ -2977,7 +2977,7 @@ "schema": { "type": "string" }, - "description": "一時停止フォームのアクセストークン。ストリーミングモードで [チャットメッセージを送信](/api-reference/チャットメッセージ/チャットメッセージを送信) が返す `human_input_required` イベントから取得します。" + "description": "一時停止フォームのアクセストークン。ストリーミングモードで [チャットメッセージを送信](/api-reference/チャットフロー/チャットメッセージを送信) が返す `human_input_required` イベントから取得します。" } ], "requestBody": { @@ -3114,7 +3114,7 @@ "/workflow/{task_id}/events": { "get": { "tags": [ - "人間の入力" + "チャットフロー" ], "summary": "ワークフローイベントをストリーム", "description": "一時停止後または元の SSE 接続が切断された後にワークフロー実行の Server-Sent Events ストリームを再開します。すでに完了している実行に対しては、`workflow_finished` イベントを 1 つ送信してストリームを閉じます。", @@ -3128,7 +3128,7 @@ "type": "string", "format": "uuid" }, - "description": "元の [チャットメッセージを送信](/api-reference/チャットメッセージ/チャットメッセージを送信) リクエストで返されたワークフロー実行 ID。" + "description": "元の [チャットメッセージを送信](/api-reference/チャットフロー/チャットメッセージを送信) リクエストで返されたワークフロー実行 ID。" }, { "name": "user", @@ -3930,7 +3930,7 @@ "external_user_id": { "type": "string", "nullable": true, - "description": "API リクエストで提供された `user` 識別子です(例:[チャットメッセージを送信](/api-reference/チャットメッセージ/チャットメッセージを送信) の `user` フィールド)。" + "description": "API リクエストで提供された `user` 識別子です(例:[チャットメッセージを送信](/api-reference/チャットフロー/チャットメッセージを送信) の `user` フィールド)。" }, "name": { "type": "string", @@ -5898,6 +5898,10 @@ { "type": "object", "properties": { + "workflow_run_id": { + "type": "string", + "description": "ワークフロー実行の実行 ID です。" + }, "data": { "type": "object", "properties": { @@ -6024,7 +6028,7 @@ "workflow_run_id": { "type": "string", "format": "uuid", - "description": "このワークフロー実行記録の永続的な識別子です。[ワークフロー実行詳細を取得](/api-reference/ワークフロー/ワークフロー実行詳細を取得) と組み合わせて、実行後に結果を取得します。" + "description": "このワークフロー実行記録の永続的な識別子です。[ワークフロー実行詳細を取得](/api-reference/チャットフロー/ワークフロー実行詳細を取得) と組み合わせて、実行後に結果を取得します。" }, "paused_nodes": { "type": "array", @@ -6085,6 +6089,10 @@ { "type": "object", "properties": { + "workflow_run_id": { + "type": "string", + "description": "ワークフロー実行の実行 ID です。" + }, "data": { "type": "object", "properties": { @@ -6125,6 +6133,10 @@ { "type": "object", "properties": { + "workflow_run_id": { + "type": "string", + "description": "ワークフロー実行の実行 ID です。" + }, "data": { "type": "object", "properties": { @@ -6654,8 +6666,8 @@ }, "tags": [ { - "name": "チャットメッセージ", - "description": "チャットメッセージとインタラクションに関連する操作です。" + "name": "チャットフロー", + "description": "チャットフローアプリケーションの操作です(チャットメッセージ、ワークフロー実行詳細、イベントストリーミングを含む)。" }, { "name": "ファイル操作", @@ -6685,13 +6697,9 @@ "name": "アノテーション管理", "description": "ダイレクト返信用のアノテーション管理に関連する操作です。" }, - { - "name": "ワークフロー実行", - "description": "ワークフロー実行の詳細とログに関連する操作です。" - }, { "name": "人間の入力", - "description": "人間の入力を要する一時停止中のワークフローの再開、およびワークフローイベントのストリーミング操作です。" + "description": "人間の入力を要する一時停止中のワークフローの再開操作です。" } ] } diff --git a/ja/api-reference/openapi_workflow.json b/ja/api-reference/openapi_workflow.json index 0a1d639cc..a0663f983 100644 --- a/ja/api-reference/openapi_workflow.json +++ b/ja/api-reference/openapi_workflow.json @@ -1745,7 +1745,7 @@ "人間の入力" ], "summary": "人間の入力フォームを送信", - "description": "一時停止中の人間の入力フォームに対する受信者の応答を送信します。フォームが受理されるとワークフローが再開するため、後続のイベントは [ワークフローイベントをストリーム](/api-reference/人間の入力/ワークフローイベントをストリーム) で受信してください。**WebApp** 配信が必要です。", + "description": "一時停止中の人間の入力フォームに対する受信者の応答を送信します。フォームが受理されるとワークフローが再開するため、後続のイベントは [ワークフローイベントをストリーム](/api-reference/ワークフロー/ワークフローイベントをストリーム) で受信してください。**WebApp** 配信が必要です。", "operationId": "submitWorkflowHumanInputForm", "parameters": [ { @@ -1892,7 +1892,7 @@ "/workflow/{task_id}/events": { "get": { "tags": [ - "人間の入力" + "ワークフロー" ], "summary": "ワークフローイベントをストリーム", "description": "一時停止後または元の SSE 接続が切断された後にワークフロー実行の Server-Sent Events ストリームを再開します。すでに完了している実行に対しては、`workflow_finished` イベントを 1 つ送信してストリームを閉じます。", @@ -4343,7 +4343,7 @@ }, { "name": "人間の入力", - "description": "人間の入力を要する一時停止中のワークフローの再開、およびワークフローイベントのストリーミング操作です。" + "description": "人間の入力を要する一時停止中のワークフローの再開操作です。" } ] } diff --git a/ja/self-host/configuration/environments.mdx b/ja/self-host/configuration/environments.mdx index 877ec72a7..5b93e9125 100644 --- a/ja/self-host/configuration/environments.mdx +++ b/ja/self-host/configuration/environments.mdx @@ -101,8 +101,8 @@ Docker ネットワーク内のサービス間通信で使用されるファイ この変数を設定するだけでは不十分です。共同編集は WebSocket 経由で動作するため、以下も必要です: -- `SERVER_WORKER_CLASS` を `geventwebsocket.gunicorn.workers.GeventWebSocketWorker` に設定します([コンテナ起動設定](#コンテナ起動設定)を参照)。 -- `NEXT_PUBLIC_SOCKET_URL` をブラウザからアクセス可能な WebSocket URL に設定します([CORS設定](#cors-設定)を参照)。 +- `SERVER_WORKER_CLASS` を `geventwebsocket.gunicorn.workers.GeventWebSocketWorker` に設定します([コンテナ起動設定](#コンテナ起動設定) を参照)。 +- `NEXT_PUBLIC_SOCKET_URL` をブラウザからアクセス可能な WebSocket URL に設定します([CORS 設定](#cors-設定) を参照)。 独自のリバースプロキシを使用する場合は `/socket.io/` パスで `Upgrade` および `Connection` ヘッダーを転送してください(同梱の nginx テンプレートにはこの設定が含まれています)。API を複数レプリカで運用する場合はスティッキーセッションが必要です。 @@ -183,7 +183,7 @@ Docker イメージまたは Docker Compose で起動する場合にのみ有効 | `SERVER_WORKER_CLASS` | `gevent` | Gunicorn ワーカータイプ。`gevent` は軽量な非同期並行処理を提供します。`ENABLE_COLLABORATION_MODE` が `true` の場合、`geventwebsocket.gunicorn.workers.GeventWebSocketWorker` に設定します。`gevent` のままだと WebSocket ハンドシェイクがサイレントに失敗します。他の値は psycopg2 と gRPC のパッチを壊します。 | | `SERVER_WORKER_CONNECTIONS` | `10` | ワーカーごとの最大同時接続数。非同期ワーカー(gevent)にのみ適用されます。高負荷時に接続拒否やレスポンス遅延が発生する場合は、この値を増加してください。 | | `GUNICORN_TIMEOUT` | `360` | ワーカーがこの秒数以内に応答しない場合、Gunicorn はそのワーカーを終了して再起動します。ストリーミング LLM レスポンスに使用される長時間 SSE 接続をサポートするため、360(6 分)に設定されています。 | -| `CELERY_WORKER_CLASS` | (空;デフォルトはgevent) | Celeryワーカータイプ。`SERVER_WORKER_CLASS`と同じgeventパッチ要件があります。変更は強く非推奨です。 | +| `CELERY_WORKER_CLASS` | (空;デフォルトは gevent) | Celery ワーカータイプ。`SERVER_WORKER_CLASS` と同じ gevent パッチ要件があります。変更は強く非推奨です。 | | `CELERY_WORKER_AMOUNT` | `4` | Celery ワーカープロセス数。オートスケーリング無効時のみ使用されます。リソースの限られた VM では下げてください。スループットを柔軟に調整したい場合は、この値を上げるより `CELERY_AUTO_SCALE` を有効化するほうが適切です。 | | `CELERY_AUTO_SCALE` | `false` | 動的オートスケーリングを有効化。有効時、Celery はキュー深度を監視し、`CELERY_MIN_WORKERS`から `CELERY_MAX_WORKERS` の間でワーカーを動的に生成/終了します。 | | `CELERY_MAX_WORKERS` | (空;デフォルトは CPU 数) | オートスケーリング有効時の最大ワーカー数。 | @@ -351,12 +351,12 @@ sentinel://:@:/:@:/ Date: Wed, 29 Apr 2026 20:55:53 +0800 Subject: [PATCH 2/3] docs: small fixes for self-host, workspace, and CJK disclaimers (#765) * docs: shorten docker-compose section headings * docs: update Team plan limit and remove Dataset Operator role * fix: correct Japanese translation errors in workspace docs * style: align AI translation disclaimers with CJK spacing rules * style: add missing space between disclaimer link and particle in ja docs * fix: point zh general-specifications disclaimer to en source --- en/self-host/quick-start/docker-compose.mdx | 8 ++-- en/use-dify/workspace/readme.mdx | 1 - .../workspace/team-members-management.mdx | 6 +-- .../agent-strategy-plugin.mdx | 2 +- .../cheatsheet.mdx | 2 +- .../creating-new-model-provider.mdx | 2 +- .../datasource-plugin.mdx | 2 +- .../develop-a-slack-bot-plugin.mdx | 2 +- .../develop-flomo-plugin.mdx | 2 +- .../develop-md-exporter.mdx | 2 +- ...evelop-multimodal-data-processing-tool.mdx | 2 +- .../dev-guides-and-walkthroughs/endpoint.mdx | 2 +- .../tool-oauth.mdx | 2 +- .../tool-plugin.mdx | 2 +- .../trigger-plugin.mdx | 2 +- .../advanced-development/bundle.mdx | 2 +- .../customizable-model.mdx | 2 +- .../reverse-invocation-app.mdx | 2 +- .../reverse-invocation-model.mdx | 2 +- .../reverse-invocation-node.mdx | 2 +- .../reverse-invocation-tool.mdx | 2 +- .../reverse-invocation.mdx | 2 +- .../plugin-types/general-specifications.mdx | 2 +- .../plugin-types/model-designing-rules.mdx | 2 +- .../plugin-types/model-schema.mdx | 2 +- .../plugin-types/multilingual-readme.mdx | 2 +- .../plugin-types/persistent-storage-kv.mdx | 2 +- .../plugin-types/plugin-info-by-manifest.mdx | 2 +- .../plugin-types/remote-debug-a-plugin.mdx | 2 +- .../features-and-specs/plugin-types/tool.mdx | 2 +- ja/develop-plugin/getting-started/cli.mdx | 2 +- .../getting-started-dify-plugin.mdx | 2 +- ja/develop-plugin/publishing/faq/faq.mdx | 2 +- .../plugin-auto-publish-pr.mdx | 2 +- .../marketplace-listing/release-by-file.mdx | 2 +- .../marketplace-listing/release-overview.mdx | 2 +- .../release-to-dify-marketplace.mdx | 2 +- .../release-to-individual-github-repo.mdx | 2 +- .../contributor-covenant-code-of-conduct.mdx | 2 +- .../privacy-protection-guidelines.mdx | 2 +- .../third-party-signature-verification.mdx | 2 +- .../local-source-code.mdx | 2 +- .../start-the-frontend-docker-container.mdx | 2 +- ja/self-host/configuration/environments.mdx | 2 +- ja/self-host/platform-guides/bt-panel.mdx | 2 +- ja/self-host/platform-guides/dify-premium.mdx | 2 +- ja/self-host/quick-start/docker-compose.mdx | 10 ++--- ja/self-host/quick-start/faqs.mdx | 2 +- .../troubleshooting/common-issues.mdx | 2 +- .../troubleshooting/docker-issues.mdx | 2 +- ja/self-host/troubleshooting/integrations.mdx | 2 +- .../troubleshooting/storage-and-migration.mdx | 2 +- .../troubleshooting/weaviate-v4-migration.mdx | 2 +- ja/use-dify/build/agent.mdx | 2 +- ja/use-dify/build/chatbot.mdx | 2 +- ja/use-dify/build/mcp.mdx | 2 +- ja/use-dify/build/orchestrate-node.mdx | 2 +- .../build/predefined-error-handling-logic.mdx | 2 +- ja/use-dify/build/shortcut-key.mdx | 2 +- ja/use-dify/build/text-generator.mdx | 2 +- ja/use-dify/build/version-control.mdx | 2 +- ja/use-dify/build/workflow-chatflow.mdx | 2 +- ja/use-dify/debug/error-type.mdx | 2 +- ja/use-dify/debug/history-and-logs.mdx | 2 +- ja/use-dify/debug/step-run.mdx | 2 +- ja/use-dify/debug/variable-inspect.mdx | 2 +- ja/use-dify/getting-started/introduction.mdx | 2 +- ja/use-dify/getting-started/key-concepts.mdx | 2 +- ja/use-dify/getting-started/quick-start.mdx | 2 +- .../chunking-and-cleaning-text.mdx | 2 +- .../import-text-data/readme.mdx | 2 +- .../import-text-data/sync-from-notion.mdx | 2 +- .../import-text-data/sync-from-website.mdx | 2 +- .../create-knowledge/introduction.mdx | 2 +- .../setting-indexing-methods.mdx | 2 +- ...integrate-knowledge-within-application.mdx | 2 +- .../authorize-data-source.mdx | 2 +- .../create-knowledge-pipeline.mdx | 2 +- .../knowledge-pipeline-orchestration.mdx | 2 +- .../manage-knowledge-base.mdx | 2 +- .../publish-knowledge-pipeline.mdx | 2 +- .../knowledge/knowledge-pipeline/readme.mdx | 2 +- .../knowledge-pipeline/upload-files.mdx | 2 +- .../knowledge-request-rate-limit.mdx | 2 +- .../manage-knowledge/introduction.mdx | 2 +- .../maintain-knowledge-documents.mdx | 2 +- ja/use-dify/knowledge/metadata.mdx | 2 +- ja/use-dify/knowledge/readme.mdx | 2 +- ja/use-dify/knowledge/test-retrieval.mdx | 2 +- ja/use-dify/monitor/analysis.mdx | 2 +- ja/use-dify/monitor/annotation-reply.mdx | 2 +- ja/use-dify/monitor/logs.mdx | 2 +- ja/use-dify/nodes/agent.mdx | 2 +- ja/use-dify/nodes/answer.mdx | 2 +- ja/use-dify/nodes/code.mdx | 2 +- ja/use-dify/nodes/doc-extractor.mdx | 2 +- ja/use-dify/nodes/http-request.mdx | 2 +- ja/use-dify/nodes/human-input.mdx | 2 +- ja/use-dify/nodes/ifelse.mdx | 2 +- ja/use-dify/nodes/iteration.mdx | 2 +- ja/use-dify/nodes/knowledge-retrieval.mdx | 2 +- ja/use-dify/nodes/list-operator.mdx | 2 +- ja/use-dify/nodes/llm.mdx | 2 +- ja/use-dify/nodes/loop.mdx | 2 +- ja/use-dify/nodes/output.mdx | 2 +- ja/use-dify/nodes/parameter-extractor.mdx | 2 +- ja/use-dify/nodes/question-classifier.mdx | 2 +- ja/use-dify/nodes/template.mdx | 2 +- ja/use-dify/nodes/tools.mdx | 2 +- ja/use-dify/nodes/trigger/overview.mdx | 2 +- ja/use-dify/nodes/trigger/plugin-trigger.mdx | 2 +- .../nodes/trigger/schedule-trigger.mdx | 2 +- ja/use-dify/nodes/user-input.mdx | 2 +- ja/use-dify/nodes/variable-aggregator.mdx | 2 +- ja/use-dify/nodes/variable-assigner.mdx | 2 +- ja/use-dify/publish/README.mdx | 2 +- ja/use-dify/publish/developing-with-apis.mdx | 2 +- ja/use-dify/publish/publish-mcp.mdx | 2 +- .../publish/publish-to-marketplace.mdx | 2 +- .../publish/webapp/chatflow-webapp.mdx | 2 +- .../publish/webapp/embedding-in-websites.mdx | 2 +- ja/use-dify/publish/webapp/web-app-access.mdx | 2 +- .../publish/webapp/web-app-settings.mdx | 2 +- .../publish/webapp/workflow-webapp.mdx | 2 +- .../tutorials/workflow-101/lesson-01.mdx | 2 +- .../tutorials/workflow-101/lesson-02.mdx | 2 +- .../tutorials/workflow-101/lesson-03.mdx | 2 +- .../tutorials/workflow-101/lesson-04.mdx | 2 +- .../tutorials/workflow-101/lesson-05.mdx | 2 +- .../tutorials/workflow-101/lesson-06.mdx | 2 +- .../tutorials/workflow-101/lesson-07.mdx | 2 +- .../tutorials/workflow-101/lesson-08.mdx | 2 +- .../tutorials/workflow-101/lesson-09.mdx | 2 +- .../tutorials/workflow-101/lesson-10.mdx | 2 +- ja/use-dify/workspace/app-management.mdx | 2 +- ja/use-dify/workspace/model-providers.mdx | 2 +- .../workspace/personal-account-management.mdx | 2 +- ja/use-dify/workspace/readme.mdx | 6 +-- .../workspace/team-members-management.mdx | 42 +++++++++---------- ja/use-dify/workspace/tools.mdx | 2 +- tools/translate/formatting-ja.md | 2 +- .../agent-strategy-plugin.mdx | 2 +- .../cheatsheet.mdx | 2 +- .../creating-new-model-provider.mdx | 2 +- .../datasource-plugin.mdx | 2 +- .../develop-a-slack-bot-plugin.mdx | 2 +- .../develop-flomo-plugin.mdx | 2 +- .../develop-md-exporter.mdx | 2 +- ...evelop-multimodal-data-processing-tool.mdx | 2 +- .../dev-guides-and-walkthroughs/endpoint.mdx | 2 +- .../tool-oauth.mdx | 2 +- .../tool-plugin.mdx | 2 +- .../trigger-plugin.mdx | 2 +- .../advanced-development/bundle.mdx | 2 +- .../customizable-model.mdx | 2 +- .../reverse-invocation-app.mdx | 2 +- .../reverse-invocation-model.mdx | 2 +- .../reverse-invocation-node.mdx | 2 +- .../reverse-invocation-tool.mdx | 2 +- .../reverse-invocation.mdx | 2 +- .../plugin-types/general-specifications.mdx | 2 +- .../plugin-types/model-designing-rules.mdx | 2 +- .../plugin-types/model-schema.mdx | 2 +- .../plugin-types/multilingual-readme.mdx | 2 +- .../plugin-types/persistent-storage-kv.mdx | 2 +- .../plugin-types/plugin-info-by-manifest.mdx | 2 +- .../plugin-types/remote-debug-a-plugin.mdx | 2 +- .../features-and-specs/plugin-types/tool.mdx | 2 +- zh/develop-plugin/getting-started/cli.mdx | 2 +- .../getting-started-dify-plugin.mdx | 2 +- zh/develop-plugin/publishing/faq/faq.mdx | 2 +- .../plugin-auto-publish-pr.mdx | 2 +- .../marketplace-listing/release-by-file.mdx | 2 +- .../marketplace-listing/release-overview.mdx | 2 +- .../release-to-dify-marketplace.mdx | 2 +- .../release-to-individual-github-repo.mdx | 2 +- .../contributor-covenant-code-of-conduct.mdx | 2 +- .../privacy-protection-guidelines.mdx | 2 +- .../third-party-signature-verification.mdx | 2 +- .../local-source-code.mdx | 2 +- .../start-the-frontend-docker-container.mdx | 2 +- zh/self-host/platform-guides/bt-panel.mdx | 2 +- zh/self-host/platform-guides/dify-premium.mdx | 2 +- zh/self-host/quick-start/docker-compose.mdx | 10 ++--- zh/self-host/quick-start/faqs.mdx | 2 +- .../troubleshooting/common-issues.mdx | 2 +- .../troubleshooting/docker-issues.mdx | 2 +- zh/self-host/troubleshooting/integrations.mdx | 2 +- .../troubleshooting/storage-and-migration.mdx | 2 +- .../troubleshooting/weaviate-v4-migration.mdx | 2 +- .../import-text-data/readme.mdx | 2 +- .../import-text-data/sync-from-notion.mdx | 2 +- .../import-text-data/sync-from-website.mdx | 2 +- .../create-knowledge/introduction.mdx | 2 +- .../authorize-data-source.mdx | 2 +- .../create-knowledge-pipeline.mdx | 2 +- .../knowledge-pipeline-orchestration.mdx | 2 +- .../manage-knowledge-base.mdx | 2 +- .../publish-knowledge-pipeline.mdx | 2 +- .../knowledge/knowledge-pipeline/readme.mdx | 2 +- .../knowledge-pipeline/upload-files.mdx | 2 +- .../integrations/integrate-langfuse.mdx | 2 +- zh/use-dify/nodes/trigger/overview.mdx | 2 +- zh/use-dify/nodes/trigger/plugin-trigger.mdx | 2 +- .../nodes/trigger/schedule-trigger.mdx | 2 +- .../publish/webapp/chatflow-webapp.mdx | 2 +- zh/use-dify/publish/webapp/web-app-access.mdx | 2 +- .../publish/webapp/web-app-settings.mdx | 2 +- .../publish/webapp/workflow-webapp.mdx | 2 +- zh/use-dify/workspace/readme.mdx | 1 - .../workspace/team-members-management.mdx | 6 +-- 211 files changed, 240 insertions(+), 254 deletions(-) diff --git a/en/self-host/quick-start/docker-compose.mdx b/en/self-host/quick-start/docker-compose.mdx index a68033bf1..c0a6fff05 100644 --- a/en/self-host/quick-start/docker-compose.mdx +++ b/en/self-host/quick-start/docker-compose.mdx @@ -25,7 +25,7 @@ Make sure your machine meets the following minimum system requirements. | Windows with WSL 2 enabled | Docker Desktop | Store source code and data bound to Linux containers in the Linux file system rather than Windows.



For installation instructions, see [Install Docker Desktop on Windows](https://docs.docker.com/desktop/windows/install/#wsl-2-backend). | -## Deploy and Start Dify +## Deploy and Start @@ -118,7 +118,7 @@ Make sure your machine meets the following minimum system requirements. -## Access Dify +## Access 1. Open the administrator initialization page to set up the admin account: @@ -140,7 +140,7 @@ Make sure your machine meets the following minimum system requirements. http://your_server_ip ``` -## Customize Dify +## Customize Modify the environment variable values in your local `.env` file, then restart Dify to apply the changes: @@ -153,7 +153,7 @@ docker compose up -d For more information, see [environment variables](/en/self-host/configuration/environments). -## Upgrade Dify +## Upgrade Upgrade steps may vary between releases. Refer to the upgrade guide for your target version provided in the [Releases](https://github.com/langgenius/dify/releases) page. diff --git a/en/use-dify/workspace/readme.mdx b/en/use-dify/workspace/readme.mdx index c49ac10b3..df5b35be5 100644 --- a/en/use-dify/workspace/readme.mdx +++ b/en/use-dify/workspace/readme.mdx @@ -43,7 +43,6 @@ Workspace roles determine access across all resources: - **Admins** manage team members and configure models/plugins - **Editors** build applications and manage knowledge bases - **Members** use published applications -- **Dataset Operators** focus on knowledge base management ## Workspace Navigation diff --git a/en/use-dify/workspace/team-members-management.mdx b/en/use-dify/workspace/team-members-management.mdx index 5140a19de..b2643d49e 100644 --- a/en/use-dify/workspace/team-members-management.mdx +++ b/en/use-dify/workspace/team-members-management.mdx @@ -11,7 +11,7 @@ Your workspace can include different numbers of team members based on your Dify - **Free**: 1 member (solo development) - **Professional**: 3 members (small teams) -- **Team**: Unlimited members (growing companies) +- **Team**: 50 members (growing companies) - **Community/Enterprise**: Unlimited members (self-hosted) ## Workspace Roles @@ -32,10 +32,6 @@ Your workspace can include different numbers of team members based on your Dify **Application usage only.** Can use published applications and tools they have access to. Cannot create or modify applications. - - - **Knowledge base specialist.** Focused role for managing datasets and knowledge bases. Can create and manage knowledge bases but has limited application access. - ## Add Team Members diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin.mdx index 4a10308f5..f8c67a8ad 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin.mdx @@ -2,7 +2,7 @@ title: エージェント戦略プラグイン --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin) を参照してください。 **エージェント戦略プラグイン**は、LLMが推論や意思決定などのタスクを実行する際に役立ちます。これには、ツールの選択と呼び出し、および結果の処理が含まれます。これにより、システムはより自律的に問題に対処できるようになります。 diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/cheatsheet.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/cheatsheet.mdx index cd96e3409..f870d40d2 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/cheatsheet.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/cheatsheet.mdx @@ -10,7 +10,7 @@ title: Dify プラグイン開発チートシート description: 環境要件、インストール方法、開発プロセス、プラグインのカテゴリとタイプ、一般的なコードスニペット、よくある問題の解決策を含む、Dify プラグイン開発の包括的なリファレンスガイドです。開発者が素早く参照できるように設計されています。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/cheatsheet)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/cheatsheet) を参照してください。 ### 環境要件 diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider.mdx index 92196dacf..d18f4c026 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider.mdx @@ -10,7 +10,7 @@ title: モデルプロバイダープラグイン description: この包括的なガイドでは、モデルプロバイダープラグインの作成について詳細な手順を提供し、プロジェクトの初期化、ディレクトリ構造の編成、モデル構成方法、プロバイダーコードの記述、およびコア API 実装の詳細な例を含むモデル統合の実装について説明します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider) を参照してください。 ### 前提条件 diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin.mdx index 7547534d3..1211ca9d0 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin.mdx @@ -2,7 +2,7 @@ title: "データソースプラグイン" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin) を参照してください。 データソースプラグインは、Dify 1.9.0で導入された新しいタイプのプラグインです。ナレッジパイプラインにおいて、ドキュメントデータソースとして機能し、パイプライン全体の起点となります。 diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin.mdx index 4cfa888c0..8145ea78d 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin.mdx @@ -10,7 +10,7 @@ title: Slack Botプラグインの開発 description: このガイドでは、Slack Botプラグインの開発について、プロジェクトの初期化、設定フォームの編集、機能の実装、デバッグ、エンドポイントのセットアップ、検証、パッケージングまで完全なウォークスルーを提供します。Slack上でAIを活用したチャットボットを構築するために、Difyプラグインスキャフォールディングツールと事前に作成したSlack Appが必要です。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin) を参照してください。 **学習内容**: diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin.mdx index b8c275c0d..ff20a0b84 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin.mdx @@ -5,7 +5,7 @@ language: en standard_title: 10-Minute Guide to Building Dify Plugins --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin) を参照してください。 ## 構築するもの diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter.mdx index 0b4b10c8c..8ca0d7a96 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter.mdx @@ -5,7 +5,7 @@ language: en standard_title: Building a Markdown Exporter Plugin --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter) を参照してください。 ## 構築するもの diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool.mdx index 3364b7604..a184e024a 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool.mdx @@ -2,7 +2,7 @@ title: ナレッジパイプラインでマルチモーダルデータを処理するツールプラグインの構築 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool) を参照してください。 ナレッジパイプラインでは、ナレッジベースノードは2種類のマルチモーダルデータ形式の入力をサポートしています:`multimodal-Parent-Child` と `multimodal-General`。 diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/endpoint.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/endpoint.mdx index 0dbdc42c7..4e041be0d 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/endpoint.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/endpoint.mdx @@ -10,7 +10,7 @@ title: Neko Cat Endpoint description: 著者 Yeuoly、Allen。このドキュメントでは、Neko Cat プロジェクトを例として、Dify プラグインにおける Endpoint の構造と実装について詳しく説明します。Endpoint グループの定義、インターフェースの設定、_invoke メソッドの実装、リクエストとレスポンスの処理について説明します。また、各種 YAML 設定フィールドの意味と使用方法についても解説します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/endpoint)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/endpoint) を参照してください。 # Endpoint diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/tool-oauth.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/tool-oauth.mdx index af349397c..9df885092 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/tool-oauth.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/tool-oauth.mdx @@ -2,7 +2,7 @@ title: "ツールプラグインにOAuthサポートを追加する" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/tool-oauth)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/tool-oauth) を参照してください。 ![OAuth 認可の例](/images/develop-plugin/dev-guide/oauth-authorize-example.png) diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/tool-plugin.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/tool-plugin.mdx index c79650496..f71727ece 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/tool-plugin.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/tool-plugin.mdx @@ -10,7 +10,7 @@ title: ツールプラグイン description: このドキュメントでは、Dify用のツールプラグインの開発方法について詳細な手順を提供します。Google Searchを例として、完全なツールプラグイン開発プロセスを示します。内容には、プラグインの初期化、テンプレートの選択、ツールプロバイダー設定ファイルの定義、サードパーティサービス認証情報の追加、ツール機能コードの実装、デバッグ、およびリリース用のパッケージングが含まれます。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/tool-plugin)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/tool-plugin) を参照してください。 ツールとは、Chatflow / ワークフロー / エージェントタイプのアプリケーションから呼び出すことができるサードパーティサービスを指し、Difyアプリケーションを強化するための完全なAPI実装機能を提供します。例えば、オンライン検索、画像生成などの追加機能を追加できます。 diff --git a/ja/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx b/ja/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx index d95bd355b..ef9029b6d 100644 --- a/ja/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx +++ b/ja/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx @@ -2,7 +2,7 @@ title: "トリガープラグイン" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin) を参照してください。 ## トリガープラグインとは? diff --git a/ja/develop-plugin/features-and-specs/advanced-development/bundle.mdx b/ja/develop-plugin/features-and-specs/advanced-development/bundle.mdx index ccd558e52..00fd55d38 100644 --- a/ja/develop-plugin/features-and-specs/advanced-development/bundle.mdx +++ b/ja/develop-plugin/features-and-specs/advanced-development/bundle.mdx @@ -10,7 +10,7 @@ title: Bundleプラグインパッケージ description: このドキュメントでは、Bundleプラグインパッケージの概念と開発方法を紹介します。Bundleプラグインパッケージは複数のプラグインを集約でき、3つのタイプ(Marketplace、GitHub、Package)をサポートしています。ドキュメントでは、Bundleプロジェクトの作成、異なるタイプの依存関係の追加、Bundleプロジェクトのパッケージ化までの全プロセスを詳しく説明します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/bundle)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/bundle) を参照してください。 Bundleプラグインパッケージは、複数のプラグインの集合体です。単一のプラグイン内に複数のプラグインをパッケージ化することで、一括インストールを可能にし、より強力なサービスを提供します。 diff --git a/ja/develop-plugin/features-and-specs/advanced-development/customizable-model.mdx b/ja/develop-plugin/features-and-specs/advanced-development/customizable-model.mdx index ceba221d7..242cf8d24 100644 --- a/ja/develop-plugin/features-and-specs/advanced-development/customizable-model.mdx +++ b/ja/develop-plugin/features-and-specs/advanced-development/customizable-model.mdx @@ -10,7 +10,7 @@ title: カスタムモデルの統合 description: このドキュメントでは、Xinferenceモデルを例として、カスタムモデルをDifyに統合する方法を詳しく説明します。モデルプロバイダーファイルの作成、モデルタイプに基づくコードの記述、モデル呼び出しロジックの実装、例外処理、デバッグ、公開までの完全なプロセスをカバーしています。特に、LLM呼び出し、トークン計算、認証情報の検証、パラメータ生成などのコアメソッドの実装を詳しく説明します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/customizable-model)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/customizable-model) を参照してください。 **カスタムモデル**とは、自分でデプロイまたは設定するLLMを指します。このドキュメントでは、[Xinferenceモデル](https://inference.readthedocs.io/en/latest/)を例として、カスタムモデルを**モデルプラグイン**に統合する方法を説明します。 diff --git a/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app.mdx b/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app.mdx index f40798232..e5ff9087d 100644 --- a/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app.mdx +++ b/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app.mdx @@ -10,7 +10,7 @@ title: App description: このドキュメントでは、プラグインがDifyプラットフォーム内でAppサービスを逆呼び出しする方法について詳しく説明します。Chatインターフェース(Chatbot/Agent/Chatflowアプリケーション用)、Workflowインターフェース、Completionインターフェースの3種類のインターフェースについて、エントリーポイント、呼び出し仕様、および各インターフェースの実用的なコード例を提供します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app) を参照してください。 Appの逆呼び出しとは、プラグインがDify内のAppからデータにアクセスできることを意味します。このモジュールは、ストリーミングと非ストリーミングの両方のApp呼び出しをサポートしています。逆呼び出しの基本概念に不慣れな場合は、まず[Difyサービスの逆呼び出し](/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation)をお読みください。 diff --git a/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model.mdx b/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model.mdx index f8efee1c5..56d35c366 100644 --- a/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model.mdx +++ b/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model.mdx @@ -10,7 +10,7 @@ title: モデルの逆呼び出し description: このドキュメントでは、プラグインがDifyプラットフォーム内でモデルサービスを逆呼び出しする方法について詳しく説明します。LLM、Summary、TextEmbedding、Rerank、TTS、Speech2Text、Moderationモデルの逆呼び出しの具体的な方法を網羅しています。各モデルの呼び出しには、エントリーポイント、インターフェースパラメータの説明、実用的なコード例、モデル呼び出しのベストプラクティス推奨事項が含まれています。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model) を参照してください。 モデルの逆呼び出しとは、プラグインがDifyの内部LLM機能を呼び出す能力を指し、TTS、Rerankなど、プラットフォーム内のすべてのモデルタイプと機能を含みます。逆呼び出しの基本概念に慣れていない場合は、まず[Difyサービスの逆呼び出し](/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation)をお読みください。 diff --git a/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node.mdx b/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node.mdx index 5dd5cea3b..c13fe24b0 100644 --- a/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node.mdx +++ b/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node.mdx @@ -10,7 +10,7 @@ title: ノード description: このドキュメントでは、プラグインがDifyプラットフォーム内のChatflow/ワークフローアプリケーションノードの機能を逆呼び出しする方法について説明します。主に、ParameterExtractorとQuestionClassifierという2つの特定のノードの呼び出し方法について説明します。このドキュメントでは、これら2つのノードを呼び出すためのエントリーポイント、インターフェースパラメータ、およびサンプルコードについて詳しく説明します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node) を参照してください。 ノードの逆呼び出しとは、プラグインがDify Chatflow/ワークフローアプリケーション内の特定のノードの機能にアクセスできることを意味します。 diff --git a/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool.mdx b/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool.mdx index 27b62207d..0c90559a9 100644 --- a/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool.mdx +++ b/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool.mdx @@ -10,7 +10,7 @@ title: ツール description: このドキュメントでは、プラグインがDifyプラットフォーム内でツールサービスを逆呼び出しする方法について詳しく説明します。インストール済みツールの呼び出し(Built-in Tool)、Workflowをツールとして呼び出し、カスタムツールの呼び出し(Custom Tool)の3種類のツール呼び出し方法について説明します。各方法には、対応するエントリーポイントとインターフェースパラメータの説明が含まれています。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool) を参照してください。 ツールの逆呼び出しとは、プラグインがDifyプラットフォーム内の他のツールタイププラグインを呼び出すことを意味します。逆呼び出しの基本概念に馴染みがない場合は、まず[Difyサービスの逆呼び出し](/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation)をお読みください。 diff --git a/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation.mdx b/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation.mdx index 5f6b0b002..7fde28fd9 100644 --- a/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation.mdx +++ b/ja/develop-plugin/features-and-specs/advanced-development/reverse-invocation.mdx @@ -10,7 +10,7 @@ title: Difyサービスの逆呼び出し description: このドキュメントでは、Difyプラグインの逆呼び出し機能について簡単に紹介します。これは、プラグインがDifyメインプラットフォーム内の指定されたサービスを呼び出せることを意味します。呼び出し可能な4種類のモジュールを紹介します:App(アプリデータへのアクセス)、Model(プラットフォーム内のモデル機能の呼び出し)、Tool(プラットフォーム内の他のツールプラグインの呼び出し)、Node(Chatflow/ワークフローアプリケーション内のノードの呼び出し)。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation) を参照してください。 プラグインは、機能を強化するためにDifyメインプラットフォーム内のいくつかのサービスを自由に呼び出すことができます。 diff --git a/ja/develop-plugin/features-and-specs/plugin-types/general-specifications.mdx b/ja/develop-plugin/features-and-specs/plugin-types/general-specifications.mdx index 30d0e58c0..0305e3f64 100644 --- a/ja/develop-plugin/features-and-specs/plugin-types/general-specifications.mdx +++ b/ja/develop-plugin/features-and-specs/plugin-types/general-specifications.mdx @@ -10,7 +10,7 @@ title: 一般仕様 description: この記事では、プラグイン開発における一般的な構造について簡単に紹介します。開発中は、全体的なアーキテクチャをより深く理解するために、[プラグイン開発の基本概念](/ja/develop-plugin/getting-started/getting-started-dify-plugin)と[開発者チートシート](/ja/develop-plugin/getting-started/cli)を併せて読むことを強くお勧めします。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/general-specifications)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/general-specifications) を参照してください。 ### パス仕様 diff --git a/ja/develop-plugin/features-and-specs/plugin-types/model-designing-rules.mdx b/ja/develop-plugin/features-and-specs/plugin-types/model-designing-rules.mdx index 46de4d902..591cfda68 100644 --- a/ja/develop-plugin/features-and-specs/plugin-types/model-designing-rules.mdx +++ b/ja/develop-plugin/features-and-specs/plugin-types/model-designing-rules.mdx @@ -10,7 +10,7 @@ title: モデル仕様 description: このドキュメントでは、Difyモデルプラグイン開発のコア概念と構造について詳細に定義しています。モデルプロバイダー(Provider)、AIモデルエンティティ(AIModelEntity)、モデルタイプ(ModelType)、設定方法(ConfigurateMethod)、モデル機能(ModelFeature)、パラメータルール(ParameterRule)、価格設定(PriceConfig)、および各種認証情報モードの詳細なデータ構造仕様が含まれます。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/model-designing-rules)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/model-designing-rules) を参照してください。 * モデルプロバイダールールは [Provider](#provider) エンティティに基づいています。 * モデルルールは [AIModelEntity](#aimodelentity) エンティティに基づいています。 diff --git a/ja/develop-plugin/features-and-specs/plugin-types/model-schema.mdx b/ja/develop-plugin/features-and-specs/plugin-types/model-schema.mdx index 0b66c853a..2bff70a24 100644 --- a/ja/develop-plugin/features-and-specs/plugin-types/model-schema.mdx +++ b/ja/develop-plugin/features-and-specs/plugin-types/model-schema.mdx @@ -10,7 +10,7 @@ title: モデルAPIインターフェース description: LLM、TextEmbedding、Rerank、Speech2text、Text2speechモデルの実装要件を含むDifyモデルプラグインAPIの包括的なガイド。すべての関連データ構造の詳細な仕様を含みます。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/model-schema)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/model-schema) を参照してください。 ## はじめに diff --git a/ja/develop-plugin/features-and-specs/plugin-types/multilingual-readme.mdx b/ja/develop-plugin/features-and-specs/plugin-types/multilingual-readme.mdx index a7a8c4d9b..a6c4362a1 100644 --- a/ja/develop-plugin/features-and-specs/plugin-types/multilingual-readme.mdx +++ b/ja/develop-plugin/features-and-specs/plugin-types/multilingual-readme.mdx @@ -10,7 +10,7 @@ title: 多言語README description: この記事では、Difyプラグインの多言語READMEのファイル仕様と、Dify Marketplaceでの表示ルールについて紹介します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/multilingual-readme)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/multilingual-readme) を参照してください。 プラグイン用の多言語READMEを作成できます。これは[Dify Marketplace](https://marketplace.dify.ai)やその他の場所で、ユーザーの優先言語に基づいて表示されます。 diff --git a/ja/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv.mdx b/ja/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv.mdx index 02b7328cc..3e1879ef4 100644 --- a/ja/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv.mdx +++ b/ja/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv.mdx @@ -10,7 +10,7 @@ title: 永続ストレージ description: 組み込みのキーバリューデータベースを使用して、Difyプラグインで永続ストレージを実装し、インタラクション間で状態を維持する方法を学びます。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv) を参照してください。 ## 概要 diff --git a/ja/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest.mdx b/ja/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest.mdx index 1d37223d4..bcfd95fdb 100644 --- a/ja/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest.mdx +++ b/ja/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest.mdx @@ -9,7 +9,7 @@ language: ja title: Manifest --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest) を参照してください。 Manifestは、**プラグイン**の最も基本的な情報を定義するYAML準拠のファイルです。プラグイン名、作成者、含まれるツール、モデルなどが含まれますが、これらに限定されません。プラグインの全体的なアーキテクチャについては、[プラグイン開発の基本概念](/ja/develop-plugin/getting-started/getting-started-dify-plugin)と[開発者チートシート](/ja/develop-plugin/dev-guides-and-walkthroughs/cheatsheet)を参照してください。 diff --git a/ja/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin.mdx b/ja/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin.mdx index bb54bf115..418d4547a 100644 --- a/ja/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin.mdx +++ b/ja/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin.mdx @@ -10,7 +10,7 @@ title: プラグインのデバッグ description: このドキュメントでは、Difyのリモートデバッグ機能を使用してプラグインをテストする方法を紹介します。デバッグ情報の取得、環境変数ファイルの設定、プラグインのリモートデバッグの開始、プラグインのインストール状態の確認について詳細な手順を提供します。この方法により、開発者はローカルで開発しながら、Dify環境でリアルタイムにプラグインをテストできます。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin) を参照してください。 プラグイン開発が完了したら、次のステップはプラグインが正常に機能するかどうかをテストすることです。Difyは、テスト環境でプラグインの機能を素早く検証するための便利なリモートデバッグ方法を提供しています。 diff --git a/ja/develop-plugin/features-and-specs/plugin-types/tool.mdx b/ja/develop-plugin/features-and-specs/plugin-types/tool.mdx index bd44a4486..4177ed35b 100644 --- a/ja/develop-plugin/features-and-specs/plugin-types/tool.mdx +++ b/ja/develop-plugin/features-and-specs/plugin-types/tool.mdx @@ -10,7 +10,7 @@ title: ツールの戻り値 description: このドキュメントでは、Difyプラグインにおけるツールのデータ構造と使用方法について詳しく紹介します。さまざまな種類のメッセージ(画像URL、リンク、テキスト、ファイル、JSON)の返し方、変数およびストリーミング変数メッセージの作成方法、ワークフローで参照するためのツール出力変数スキーマの定義方法について説明します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/tool)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/features-and-specs/plugin-types/tool) を参照してください。 ## 概要 diff --git a/ja/develop-plugin/getting-started/cli.mdx b/ja/develop-plugin/getting-started/cli.mdx index bccebacfd..17fe20ba0 100644 --- a/ja/develop-plugin/getting-started/cli.mdx +++ b/ja/develop-plugin/getting-started/cli.mdx @@ -10,7 +10,7 @@ title: CLI description: Difyプラグイン開発用コマンドラインインターフェース --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/getting-started/cli)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/getting-started/cli) を参照してください。 コマンドラインインターフェース(CLI)を使用してDifyプラグインのセットアップとパッケージ化を行います。CLIは、初期化からパッケージ化まで、プラグイン開発ワークフローを効率的に管理する方法を提供します。 diff --git a/ja/develop-plugin/getting-started/getting-started-dify-plugin.mdx b/ja/develop-plugin/getting-started/getting-started-dify-plugin.mdx index 9b745d118..14ee59be9 100644 --- a/ja/develop-plugin/getting-started/getting-started-dify-plugin.mdx +++ b/ja/develop-plugin/getting-started/getting-started-dify-plugin.mdx @@ -9,7 +9,7 @@ language: en title: Dify プラグイン --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/getting-started/getting-started-dify-plugin)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/getting-started/getting-started-dify-plugin) を参照してください。 Dify プラグインは、AI アプリケーションに追加機能を提供するモジュラーコンポーネントです。外部サービス、カスタム機能、特殊なツールを Dify で構築した AI アプリケーションに統合することができます。 diff --git a/ja/develop-plugin/publishing/faq/faq.mdx b/ja/develop-plugin/publishing/faq/faq.mdx index 7a8dd62b8..4a71c59a6 100644 --- a/ja/develop-plugin/publishing/faq/faq.mdx +++ b/ja/develop-plugin/publishing/faq/faq.mdx @@ -12,7 +12,7 @@ title: よくある質問 description: このドキュメントでは、Difyプラグインの開発とインストールに関するよくある質問に回答します。プラグインのアップロード失敗の解決方法(authorフィールドの修正)やプラグインインストール時の検証例外の処理方法(FORCE_VERIFYING_SIGNATURE環境変数の設定)などを含みます。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/faq/faq)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/faq/faq) を参照してください。 ## インストール時にプラグインのアップロードが失敗した場合はどうすればよいですか? diff --git a/ja/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr.mdx b/ja/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr.mdx index af7e1fc0d..1b1442b74 100644 --- a/ja/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr.mdx +++ b/ja/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr.mdx @@ -10,7 +10,7 @@ title: PRによるプラグインの自動公開 description: このドキュメントでは、GitHub Actionsを使用してDifyプラグインのリリースプロセスを自動化する方法について説明します。設定手順、パラメータの説明、使用方法を含み、プラグイン開発者が手動操作なしでリリースプロセスを効率化できるようサポートします。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr) を参照してください。 ### 背景 diff --git a/ja/develop-plugin/publishing/marketplace-listing/release-by-file.mdx b/ja/develop-plugin/publishing/marketplace-listing/release-by-file.mdx index e05ce4bcb..e4b2c4f07 100644 --- a/ja/develop-plugin/publishing/marketplace-listing/release-by-file.mdx +++ b/ja/develop-plugin/publishing/marketplace-listing/release-by-file.mdx @@ -10,7 +10,7 @@ title: ローカルファイルとしてパッケージ化して共有 description: このドキュメントでは、Difyプラグインプロジェクトをローカルファイルとしてパッケージ化し、他のユーザーと共有する方法について詳細な手順を提供します。プラグインのパッケージ化前の準備作業、Difyプラグイン開発ツールを使用したパッケージ化コマンドの実行方法、生成された.difypkgファイルのインストール方法、および他のユーザーとプラグインファイルを共有する方法について説明します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/marketplace-listing/release-by-file)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/marketplace-listing/release-by-file) を参照してください。 プラグイン開発が完了したら、プラグインプロジェクトをローカルファイルとしてパッケージ化し、他のユーザーと共有できます。プラグインファイルを入手した後、Dify Workspaceにインストールできます。まだプラグインを開発していない場合は、[プラグイン開発:Hello Worldガイド](/ja/develop-plugin/dev-guides-and-walkthroughs/tool-plugin)を参照してください。 diff --git a/ja/develop-plugin/publishing/marketplace-listing/release-overview.mdx b/ja/develop-plugin/publishing/marketplace-listing/release-overview.mdx index 2dabba039..37bc36d5f 100644 --- a/ja/develop-plugin/publishing/marketplace-listing/release-overview.mdx +++ b/ja/develop-plugin/publishing/marketplace-listing/release-overview.mdx @@ -10,7 +10,7 @@ title: プラグインの公開 description: このドキュメントでは、Difyプラグインを公開する3つの方法(公式マーケットプレイス、オープンソースGitHubリポジトリ、ローカルプラグインファイルパッケージ)を紹介します。各方法の特徴、公開プロセス、適用シナリオを詳しく説明し、さまざまな開発者のニーズに対応するための具体的な公開推奨事項を提供します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/marketplace-listing/release-overview)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/marketplace-listing/release-overview) を参照してください。 ### 公開方法 diff --git a/ja/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace.mdx b/ja/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace.mdx index 921d25c88..f92126332 100644 --- a/ja/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace.mdx +++ b/ja/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace.mdx @@ -10,7 +10,7 @@ title: Dify Marketplaceへの公開 description: このガイドでは、Dify Marketplaceへのプラグイン公開の完全なプロセスについて、PRの提出、レビュープロセス、リリース後のメンテナンス、その他の重要なステップと考慮事項を含めて詳細に説明します。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace) を参照してください。 Dify Marketplaceは、パートナーやコミュニティ開発者からのプラグイン提出を歓迎します。皆様の貢献は、Difyプラグインの可能性をさらに豊かにします。このガイドでは、明確な公開プロセスとベストプラクティスの推奨事項を提供し、プラグインがスムーズに公開され、コミュニティに価値をもたらすことを支援します。まだプラグインを開発していない場合は、[プラグイン開発:Hello Worldガイド](/ja/develop-plugin/dev-guides-and-walkthroughs/tool-plugin)を参照してください。 diff --git a/ja/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo.mdx b/ja/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo.mdx index afc1909f3..6aa659622 100644 --- a/ja/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo.mdx +++ b/ja/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo.mdx @@ -10,7 +10,7 @@ title: 個人GitHubリポジトリへの公開 description: このドキュメントでは、Difyプラグインを個人のGitHubリポジトリに公開する方法について、準備作業、ローカルプラグインリポジトリの初期化、リモートリポジトリへの接続、プラグインファイルのアップロード、プラグインコードのパッケージング、およびGitHub経由でのプラグインインストールの完全なプロセスを含む詳細な手順を提供します。この方法により、開発者は自分のプラグインコードと更新を完全に管理できます。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo) を参照してください。 ### 公開方法 diff --git a/ja/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct.mdx b/ja/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct.mdx index 0a4515c08..8026a4899 100644 --- a/ja/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct.mdx +++ b/ja/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct.mdx @@ -10,7 +10,7 @@ title: プラグイン開発ガイドライン description: Dify Marketplaceのすべてのプラグインの品質を確保し、Dify Marketplaceユーザーに一貫した高品質な体験を提供するため、プラグインを審査に提出する際には、これらのプラグイン開発ガイドラインに記載されているすべての要件を遵守する必要があります。プラグインを提出することにより、**以下のすべての条項を読み、理解し、遵守することに同意したものとみなされます**。これらのガイドラインに従うことで、プラグインの審査がより迅速に行われます。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct) を参照してください。 ## 1. プラグインの価値と独自性 diff --git a/ja/develop-plugin/publishing/standards/privacy-protection-guidelines.mdx b/ja/develop-plugin/publishing/standards/privacy-protection-guidelines.mdx index 747744938..45ba65dde 100644 --- a/ja/develop-plugin/publishing/standards/privacy-protection-guidelines.mdx +++ b/ja/develop-plugin/publishing/standards/privacy-protection-guidelines.mdx @@ -10,7 +10,7 @@ title: プラグインプライバシーポリシーガイドライン description: このドキュメントは、開発者がDify Marketplaceにプラグインを提出する際のプライバシーポリシーの書き方に関するガイドラインを説明します。収集する個人データの種類(直接識別情報、間接識別情報、組み合わせ情報)の特定とリストアップ方法、プラグインプライバシーポリシーの記入方法、Manifestファイルへのプライバシーポリシー声明の含め方、および関連するよくある質問への回答が含まれています。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/standards/privacy-protection-guidelines)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/standards/privacy-protection-guidelines) を参照してください。 プラグインをDify Marketplaceに提出する際は、ユーザーデータの取り扱い方法について透明性を持つ必要があります。以下のガイドラインは、プラグインのプライバシー関連の質問とユーザーデータ処理への対応方法に焦点を当てています。 diff --git a/ja/develop-plugin/publishing/standards/third-party-signature-verification.mdx b/ja/develop-plugin/publishing/standards/third-party-signature-verification.mdx index e60f7f9c6..6fab87576 100644 --- a/ja/develop-plugin/publishing/standards/third-party-signature-verification.mdx +++ b/ja/develop-plugin/publishing/standards/third-party-signature-verification.mdx @@ -10,7 +10,7 @@ title: サードパーティ署名検証用のプラグイン署名 description: このドキュメントでは、Dify Community Editionでサードパーティ署名検証機能を有効化して使用する方法について説明します。キーペアの生成、プラグインの署名と検証、環境設定の手順を含み、管理者がDify Marketplaceで入手できないプラグインを安全にインストールできるようにします。 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/standards/third-party-signature-verification)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/develop-plugin/publishing/standards/third-party-signature-verification) を参照してください。 --- title: diff --git a/ja/self-host/advanced-deployments/local-source-code.mdx b/ja/self-host/advanced-deployments/local-source-code.mdx index 99cf2b428..8532ffa92 100644 --- a/ja/self-host/advanced-deployments/local-source-code.mdx +++ b/ja/self-host/advanced-deployments/local-source-code.mdx @@ -2,7 +2,7 @@ title: ローカルソースコードからの起動 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/advanced-deployments/local-source-code)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/advanced-deployments/local-source-code) を参照してください。 ## 前提条件 diff --git a/ja/self-host/advanced-deployments/start-the-frontend-docker-container.mdx b/ja/self-host/advanced-deployments/start-the-frontend-docker-container.mdx index ecd1656f7..64e942135 100644 --- a/ja/self-host/advanced-deployments/start-the-frontend-docker-container.mdx +++ b/ja/self-host/advanced-deployments/start-the-frontend-docker-container.mdx @@ -2,7 +2,7 @@ title: フロントコンテナ起動 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/advanced-deployments/start-the-frontend-docker-container)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/advanced-deployments/start-the-frontend-docker-container) を参照してください。 バックエンドを別々に開発する場合、フロントエンドをローカルでビルドして起動せずに、ソースコードからバックエンドサービスのみを開始することができます。この場合、Dockerイメージをプルしてコンテナを実行することで、直接フロントエンドサービスを開始できます。以下は具体的な手順です: diff --git a/ja/self-host/configuration/environments.mdx b/ja/self-host/configuration/environments.mdx index 5b93e9125..d633f55e0 100644 --- a/ja/self-host/configuration/environments.mdx +++ b/ja/self-host/configuration/environments.mdx @@ -3,7 +3,7 @@ title: 環境変数 description: Dify セルフホストデプロイで使用されるすべての環境変数のリファレンス --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、 [英語版](/en/self-host/configuration/environments) を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/configuration/environments) を参照してください。 Dify はデフォルト設定でそのまま動作します。`.env` ファイルの環境変数を変更することで、デプロイをカスタマイズできます。 diff --git a/ja/self-host/platform-guides/bt-panel.mdx b/ja/self-host/platform-guides/bt-panel.mdx index d86459bb8..4059b44b6 100644 --- a/ja/self-host/platform-guides/bt-panel.mdx +++ b/ja/self-host/platform-guides/bt-panel.mdx @@ -2,7 +2,7 @@ title: aaPanelでのデプロイ --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/platform-guides/bt-panel)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/platform-guides/bt-panel) を参照してください。 ## 前提条件 diff --git a/ja/self-host/platform-guides/dify-premium.mdx b/ja/self-host/platform-guides/dify-premium.mdx index 1e33ff108..d1491ede4 100644 --- a/ja/self-host/platform-guides/dify-premium.mdx +++ b/ja/self-host/platform-guides/dify-premium.mdx @@ -2,7 +2,7 @@ title: AWS上のDify Premium --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/platform-guides/dify-premium)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/platform-guides/dify-premium) を参照してください。 Dify Premiumは、カスタムブランディングを可能にし、EC2インスタンスとしてAWS VPCにワンクリックでデプロイできるAWS AMIサービスです。[AWS Marketplace](https://aws.amazon.com/marketplace/pp/prodview-t22mebxzwjhu6)にアクセスして購読してください。以下のようなシナリオで有用です: diff --git a/ja/self-host/quick-start/docker-compose.mdx b/ja/self-host/quick-start/docker-compose.mdx index e6f2711a9..41fb59800 100644 --- a/ja/self-host/quick-start/docker-compose.mdx +++ b/ja/self-host/quick-start/docker-compose.mdx @@ -3,7 +3,7 @@ title: Docker ComposeでDifyをデプロイする sidebarTitle: Docker Compose --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/quick-start/docker-compose)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/quick-start/docker-compose) を参照してください。 一般的なデプロイに関する質問については、[FAQ](/ja/self-host/quick-start/faqs)を参照してください。 @@ -27,7 +27,7 @@ sidebarTitle: Docker Compose | WSL 2が有効なWindows | Docker Desktop | Linuxコンテナにバインドされるソースコードやデータは、Windowsファイルシステムではなく、Linuxファイルシステムに保存してください。



インストール手順については、[Windows用Docker Desktopのインストール](https://docs.docker.com/desktop/windows/install/#wsl-2-backend)を参照してください。 | -## Difyのデプロイと起動 +## デプロイと起動 @@ -120,7 +120,7 @@ sidebarTitle: Docker Compose -## Difyへのアクセス +## アクセス 1. 管理者初期化ページを開いて、管理者アカウントを設定します: @@ -142,7 +142,7 @@ sidebarTitle: Docker Compose http://your_server_ip ``` -## Difyのカスタマイズ +## カスタマイズ ローカルの`.env`ファイルの環境変数値を変更し、Difyを再起動して変更を適用します: @@ -155,7 +155,7 @@ docker compose up -d 詳細については、[環境変数](/ja/self-host/configuration/environments)を参照してください。
-## Difyのアップグレード +## アップグレード アップグレード手順はリリースによって異なる場合があります。[Releases](https://github.com/langgenius/dify/releases)ページで提供されている対象バージョンのアップグレードガイドを参照してください。 diff --git a/ja/self-host/quick-start/faqs.mdx b/ja/self-host/quick-start/faqs.mdx index 8f92b298b..ee2c3671c 100644 --- a/ja/self-host/quick-start/faqs.mdx +++ b/ja/self-host/quick-start/faqs.mdx @@ -2,7 +2,7 @@ title: よくある質問 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/quick-start/faqs)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/quick-start/faqs) を参照してください。 ## デプロイ方法 diff --git a/ja/self-host/troubleshooting/common-issues.mdx b/ja/self-host/troubleshooting/common-issues.mdx index 6a5a4091a..5c90e47d3 100644 --- a/ja/self-host/troubleshooting/common-issues.mdx +++ b/ja/self-host/troubleshooting/common-issues.mdx @@ -2,7 +2,7 @@ title: よくある問題 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/troubleshooting/common-issues)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/troubleshooting/common-issues) を参照してください。 ## 認証とアクセス diff --git a/ja/self-host/troubleshooting/docker-issues.mdx b/ja/self-host/troubleshooting/docker-issues.mdx index 76fa1bbcd..3cb3b8515 100644 --- a/ja/self-host/troubleshooting/docker-issues.mdx +++ b/ja/self-host/troubleshooting/docker-issues.mdx @@ -2,7 +2,7 @@ title: Dockerの問題 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/troubleshooting/docker-issues)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/troubleshooting/docker-issues) を参照してください。 ## ネットワークと接続 diff --git a/ja/self-host/troubleshooting/integrations.mdx b/ja/self-host/troubleshooting/integrations.mdx index 793784415..15e77c916 100644 --- a/ja/self-host/troubleshooting/integrations.mdx +++ b/ja/self-host/troubleshooting/integrations.mdx @@ -2,7 +2,7 @@ title: サードパーティ統合 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/troubleshooting/integrations)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/troubleshooting/integrations) を参照してください。 ## Notion統合 diff --git a/ja/self-host/troubleshooting/storage-and-migration.mdx b/ja/self-host/troubleshooting/storage-and-migration.mdx index 964c65c40..2bd1b9d75 100644 --- a/ja/self-host/troubleshooting/storage-and-migration.mdx +++ b/ja/self-host/troubleshooting/storage-and-migration.mdx @@ -2,7 +2,7 @@ title: ストレージとマイグレーション --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/troubleshooting/storage-and-migration)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/troubleshooting/storage-and-migration) を参照してください。 ## ベクトルデータベースマイグレーション diff --git a/ja/self-host/troubleshooting/weaviate-v4-migration.mdx b/ja/self-host/troubleshooting/weaviate-v4-migration.mdx index 9267e6305..5ce5e546e 100644 --- a/ja/self-host/troubleshooting/weaviate-v4-migration.mdx +++ b/ja/self-host/troubleshooting/weaviate-v4-migration.mdx @@ -2,7 +2,7 @@ title: Weaviate 移行ガイド:クライアント v4 とサーバー 1.27+ へのアップグレード --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/troubleshooting/weaviate-v4-migration)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/self-host/troubleshooting/weaviate-v4-migration) を参照してください。 > このガイドでは、Weaviate クライアント v3 から v4.17.0 への移行と、Weaviate サーバーをバージョン 1.19.0 から 1.27.0 以降にアップグレードする方法について説明します。この移行は、weaviate-client v4 アップグレードを含む Dify バージョンに必要です。 diff --git a/ja/use-dify/build/agent.mdx b/ja/use-dify/build/agent.mdx index 83428b0d0..09ead39c3 100644 --- a/ja/use-dify/build/agent.mdx +++ b/ja/use-dify/build/agent.mdx @@ -3,7 +3,7 @@ title: Agent description: モデルが自律的に推論、意思決定、ツール使用を行うチャット形式のアプリ --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/agent)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/agent) を参照してください。 Agent は、必要に応じてツールを使用してユーザーのリクエストを完了するチャット形式のアプリです。 diff --git a/ja/use-dify/build/chatbot.mdx b/ja/use-dify/build/chatbot.mdx index 53937a374..af4c676e8 100644 --- a/ja/use-dify/build/chatbot.mdx +++ b/ja/use-dify/build/chatbot.mdx @@ -4,7 +4,7 @@ sidebarTitle: チャットボット description: モデルとプロンプトで会話型アプリを構築する最もシンプルな方法 --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/chatbot)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/chatbot) を参照してください。 チャットボットは、ユーザーがチャットインターフェースを通じてモデルと対話する会話型アプリです。 diff --git a/ja/use-dify/build/mcp.mdx b/ja/use-dify/build/mcp.mdx index a18cc452e..5bc18e43d 100644 --- a/ja/use-dify/build/mcp.mdx +++ b/ja/use-dify/build/mcp.mdx @@ -2,7 +2,7 @@ title: "MCPツールの使用" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/mcp)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/mcp) を参照してください。 [MCPサーバー](https://modelcontextprotocol.io/docs/getting-started/intro)から外部ツールをDifyアプリに接続します。組み込みツールだけでなく、成長する[MCPエコシステム](https://mcpservers.org/)のツールも使用できます。 diff --git a/ja/use-dify/build/orchestrate-node.mdx b/ja/use-dify/build/orchestrate-node.mdx index 5883d27df..bac7149a2 100644 --- a/ja/use-dify/build/orchestrate-node.mdx +++ b/ja/use-dify/build/orchestrate-node.mdx @@ -3,7 +3,7 @@ title: オーケストレーションロジック description: ワークフローまたはチャットフローを構築する際の、ノードの配置、ネスト、再利用方法 --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/orchestrate-node)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/orchestrate-node) を参照してください。 ## 直列実行と並列実行 diff --git a/ja/use-dify/build/predefined-error-handling-logic.mdx b/ja/use-dify/build/predefined-error-handling-logic.mdx index 90188aead..31528cc10 100644 --- a/ja/use-dify/build/predefined-error-handling-logic.mdx +++ b/ja/use-dify/build/predefined-error-handling-logic.mdx @@ -2,7 +2,7 @@ title: "エラーの処理" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/predefined-error-handling-logic)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/predefined-error-handling-logic) を参照してください。 diff --git a/ja/use-dify/build/shortcut-key.mdx b/ja/use-dify/build/shortcut-key.mdx index ea74a27b7..961669ca9 100644 --- a/ja/use-dify/build/shortcut-key.mdx +++ b/ja/use-dify/build/shortcut-key.mdx @@ -2,7 +2,7 @@ title: "ホットキー" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/shortcut-key)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/shortcut-key) を参照してください。 キーボードショートカットでワークフロー構築を高速化します。 diff --git a/ja/use-dify/build/text-generator.mdx b/ja/use-dify/build/text-generator.mdx index b2b0fc174..1e42e6d44 100644 --- a/ja/use-dify/build/text-generator.mdx +++ b/ja/use-dify/build/text-generator.mdx @@ -4,7 +4,7 @@ sidebarTitle: テキストジェネレーター description: プロンプトとユーザー入力からテキストを生成するシンプルなシングルターンアプリ --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/text-generator)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/text-generator) を参照してください。 テキストジェネレーターはシンプルなシングルターンアプリです。プロンプトを作成し、入力を提供すると、モデルが応答を生成します。 diff --git a/ja/use-dify/build/version-control.mdx b/ja/use-dify/build/version-control.mdx index e2ed82114..b8545a05b 100644 --- a/ja/use-dify/build/version-control.mdx +++ b/ja/use-dify/build/version-control.mdx @@ -2,7 +2,7 @@ title: "バージョン管理" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/version-control)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/version-control) を参照してください。 チャットフローとワークフローアプリの変更を追跡し、バージョンを管理します。 diff --git a/ja/use-dify/build/workflow-chatflow.mdx b/ja/use-dify/build/workflow-chatflow.mdx index 0e0fc653a..be216ad90 100644 --- a/ja/use-dify/build/workflow-chatflow.mdx +++ b/ja/use-dify/build/workflow-chatflow.mdx @@ -4,7 +4,7 @@ sidebarTitle: 概要 description: AI モデル、ツール、ロジックを組み合わせて信頼性の高い再現可能なプロセスを構築する Agentic ワークフロー --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/workflow-chatflow)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/build/workflow-chatflow) を参照してください。 ## なぜ Agentic ワークフローなのか diff --git a/ja/use-dify/debug/error-type.mdx b/ja/use-dify/debug/error-type.mdx index 73b943ce2..bfb679eec 100644 --- a/ja/use-dify/debug/error-type.mdx +++ b/ja/use-dify/debug/error-type.mdx @@ -2,7 +2,7 @@ title: エラータイプ --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/debug/error-type)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/debug/error-type) を参照してください。 各ノードタイプは特定のエラークラスを投げ、何が間違っていたかとどのように修正するかを理解するのに役立ちます。 diff --git a/ja/use-dify/debug/history-and-logs.mdx b/ja/use-dify/debug/history-and-logs.mdx index e121007e8..17e41bdef 100644 --- a/ja/use-dify/debug/history-and-logs.mdx +++ b/ja/use-dify/debug/history-and-logs.mdx @@ -2,7 +2,7 @@ title: "実行履歴" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/debug/history-and-logs)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/debug/history-and-logs) を参照してください。 Difyは、ワークフローが実行されるたびに詳細な実行履歴を記録します。アプリケーションレベルと個々のノードの両方で何が起こったかを確認できます。 diff --git a/ja/use-dify/debug/step-run.mdx b/ja/use-dify/debug/step-run.mdx index ea174a7f1..e15ab37b7 100644 --- a/ja/use-dify/debug/step-run.mdx +++ b/ja/use-dify/debug/step-run.mdx @@ -2,7 +2,7 @@ title: "単一ノード" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/debug/step-run)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/debug/step-run) を参照してください。 個別のノードをテストしたり、ワークフローをステップバイステップで実行して、公開前に問題を発見できます。 diff --git a/ja/use-dify/debug/variable-inspect.mdx b/ja/use-dify/debug/variable-inspect.mdx index c9786ef5b..f0fb20261 100644 --- a/ja/use-dify/debug/variable-inspect.mdx +++ b/ja/use-dify/debug/variable-inspect.mdx @@ -2,7 +2,7 @@ title: "変数インスペクター" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/debug/variable-inspect)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/debug/variable-inspect) を参照してください。 変数インスペクターは、ワークフローを流れるすべてのデータを表示します。各ノードの実行後に入力と出力をキャプチャするため、何が起こっているかを確認し、異なるシナリオをテストできます。 diff --git a/ja/use-dify/getting-started/introduction.mdx b/ja/use-dify/getting-started/introduction.mdx index 5b752a110..4b35f082d 100644 --- a/ja/use-dify/getting-started/introduction.mdx +++ b/ja/use-dify/getting-started/introduction.mdx @@ -3,7 +3,7 @@ title: "はじめに" mode: "wide" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/getting-started/introduction)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/getting-started/introduction) を参照してください。 Difyは、AIワークフローを構築するためのオープンソースプラットフォームです。ビジュアルキャンバス上でAIモデルを編成し、データソースを接続し、処理フローを定義することで、ドメイン知識を直接動作するソフトウェアに変換できます。 diff --git a/ja/use-dify/getting-started/key-concepts.mdx b/ja/use-dify/getting-started/key-concepts.mdx index 949853cf8..76bc30bb0 100644 --- a/ja/use-dify/getting-started/key-concepts.mdx +++ b/ja/use-dify/getting-started/key-concepts.mdx @@ -3,7 +3,7 @@ title: "主要な概念" description: "Difyの重要な概念の簡単な概要" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/getting-started/key-concepts)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/getting-started/key-concepts) を参照してください。 ### Difyアプリ diff --git a/ja/use-dify/getting-started/quick-start.mdx b/ja/use-dify/getting-started/quick-start.mdx index 7f40c2da7..67626bc06 100644 --- a/ja/use-dify/getting-started/quick-start.mdx +++ b/ja/use-dify/getting-started/quick-start.mdx @@ -3,7 +3,7 @@ title: "30分間クイックスタート" description: "サンプルアプリを通じてDifyを深く理解" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/getting-started/quick-start)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/getting-started/quick-start) を参照してください。 このステップバイステップのチュートリアルでは、ゼロからマルチプラットフォームコンテンツジェネレーターを作成します。 diff --git a/ja/use-dify/knowledge/create-knowledge/chunking-and-cleaning-text.mdx b/ja/use-dify/knowledge/create-knowledge/chunking-and-cleaning-text.mdx index 32d427d88..9492afb10 100644 --- a/ja/use-dify/knowledge/create-knowledge/chunking-and-cleaning-text.mdx +++ b/ja/use-dify/knowledge/create-knowledge/chunking-and-cleaning-text.mdx @@ -2,7 +2,7 @@ title: チャンク設定 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/chunking-and-cleaning-text)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/chunking-and-cleaning-text) を参照してください。 ## チャンクとは? diff --git a/ja/use-dify/knowledge/create-knowledge/import-text-data/readme.mdx b/ja/use-dify/knowledge/create-knowledge/import-text-data/readme.mdx index 381d9a7ec..96197ff01 100644 --- a/ja/use-dify/knowledge/create-knowledge/import-text-data/readme.mdx +++ b/ja/use-dify/knowledge/create-knowledge/import-text-data/readme.mdx @@ -2,7 +2,7 @@ title: ローカルファイルをアップロード --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/import-text-data/readme)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/import-text-data/readme) を参照してください。 ナレッジベース作成後は、データソースを変更できません。 diff --git a/ja/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion.mdx b/ja/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion.mdx index 1fc7fb938..385488d4c 100644 --- a/ja/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion.mdx +++ b/ja/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion.mdx @@ -2,7 +2,7 @@ title: Notionデータをインポート --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion) を参照してください。 DifyデータセットはNotionからのインポートをサポートし、**同期**を設定することで、Notionのデータが更新されると自動的にDifyに同期されます。 diff --git a/ja/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website.mdx b/ja/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website.mdx index be17204fc..f33e6d4c2 100644 --- a/ja/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website.mdx +++ b/ja/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website.mdx @@ -2,7 +2,7 @@ title: Webサイトからデータをインポート --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website) を参照してください。 Dify のナレッジベースでは、[Jina Reader](https://jina.ai/reader)や[Firecrawl](https://www.firecrawl.dev/)を利用してウェブページをスクレイピングし、解析したデータをMarkdownの形式でナレッジベースに取り込むことができます。 diff --git a/ja/use-dify/knowledge/create-knowledge/introduction.mdx b/ja/use-dify/knowledge/create-knowledge/introduction.mdx index db03df2ef..951a1b092 100644 --- a/ja/use-dify/knowledge/create-knowledge/introduction.mdx +++ b/ja/use-dify/knowledge/create-knowledge/introduction.mdx @@ -3,7 +3,7 @@ title: ナレッジをクイック作成 sidebarTitle: 概要 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/introduction)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/introduction) を参照してください。 ナレッジベースを迅速に作成して設定するには、以下の手順に従います。 diff --git a/ja/use-dify/knowledge/create-knowledge/setting-indexing-methods.mdx b/ja/use-dify/knowledge/create-knowledge/setting-indexing-methods.mdx index be70fb36b..9fec4d75d 100644 --- a/ja/use-dify/knowledge/create-knowledge/setting-indexing-methods.mdx +++ b/ja/use-dify/knowledge/create-knowledge/setting-indexing-methods.mdx @@ -2,7 +2,7 @@ title: インデックス方法と検索設定を指定 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/setting-indexing-methods)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/create-knowledge/setting-indexing-methods) を参照してください。 チャンキングモードを選択した後、次のステップは構造化されたコンテンツのインデックス方法を定義することです。 diff --git a/ja/use-dify/knowledge/integrate-knowledge-within-application.mdx b/ja/use-dify/knowledge/integrate-knowledge-within-application.mdx index afe7e97ac..ac4f470e3 100644 --- a/ja/use-dify/knowledge/integrate-knowledge-within-application.mdx +++ b/ja/use-dify/knowledge/integrate-knowledge-within-application.mdx @@ -3,7 +3,7 @@ title: アプリ内でのナレッジベース統合 sidebarTitle: アプリ内で統合 --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/integrate-knowledge-within-application)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/integrate-knowledge-within-application) を参照してください。 ### 1 ナレッジベースの引用プロセス diff --git a/ja/use-dify/knowledge/knowledge-pipeline/authorize-data-source.mdx b/ja/use-dify/knowledge/knowledge-pipeline/authorize-data-source.mdx index da2af12b8..bd8a1f77a 100644 --- a/ja/use-dify/knowledge/knowledge-pipeline/authorize-data-source.mdx +++ b/ja/use-dify/knowledge/knowledge-pipeline/authorize-data-source.mdx @@ -2,7 +2,7 @@ title: データソース認証 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/authorize-data-source)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/authorize-data-source) を参照してください。 Difyは、多様な外部データソースへの接続をサポートしています。データの安全性とアクセス制御を確保するため、各データソースごとに適切な認証設定が必要です。Difyでは主に **APIキー** と **OAuth** の2つの認証方式を提供しており、安全に必要なデータへアクセス・インポートすることが可能です。 diff --git a/ja/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline.mdx b/ja/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline.mdx index a7d3efa3c..6df1e3295 100644 --- a/ja/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline.mdx +++ b/ja/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline.mdx @@ -2,7 +2,7 @@ title: "ステップ1:ナレッジパイプラインの作成" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline) を参照してください。 ![ナレッジベースパイプラインの作成](/images/use-dify/knowledge/create-knowledge-pipeline-01.png) diff --git a/ja/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration.mdx b/ja/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration.mdx index 54095ae75..11a221d2a 100644 --- a/ja/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration.mdx +++ b/ja/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration.mdx @@ -2,7 +2,7 @@ title: ステップ2:ナレッジパイプラインをオーケストレーションする --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration) を参照してください。 工場の生産ラインを例に考えてみましょう。各ステーション(ノード)が特定の作業を担当し、それらを連携させて部品を組み立て、最終製品を完成させます。ナレッジパイプラインの構築も同様のプロセスです。視覚的なワークフロー設計ツールを使用し、ドラッグ&ドロップ操作だけで容易にデータ処理の流れを設計できます。これにより、ドキュメントの取り込み、処理、分割、インデックス化、検索戦略を自在に管理できます。 diff --git a/ja/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base.mdx b/ja/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base.mdx index 8c5102363..ebfb9b485 100644 --- a/ja/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base.mdx +++ b/ja/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base.mdx @@ -2,7 +2,7 @@ title: "ステップ5:ナレッジベースの管理と活用" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base) を参照してください。 ナレッジベース作成後は、継続的な管理・最適化により、アプリケーションに正確なコンテキスト情報を提供することが大切です。管理には以下のオプションがあります。 diff --git a/ja/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline.mdx b/ja/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline.mdx index 69317a19b..508e872bd 100644 --- a/ja/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline.mdx +++ b/ja/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline.mdx @@ -2,7 +2,7 @@ title: "ステップ3:ナレッジパイプラインの公開" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline) を参照してください。 オーケストレーション・デバッグが完了したら**公開**をクリックし、確認ダイアログで**確定**を押します。 diff --git a/ja/use-dify/knowledge/knowledge-pipeline/readme.mdx b/ja/use-dify/knowledge/knowledge-pipeline/readme.mdx index 99b1841c9..a9d100778 100644 --- a/ja/use-dify/knowledge/knowledge-pipeline/readme.mdx +++ b/ja/use-dify/knowledge/knowledge-pipeline/readme.mdx @@ -3,7 +3,7 @@ title: ナレッジパイプラインからナレッジを作成 sidebarTitle: 概要 --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/readme)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/readme) を参照してください。 ナレッジパイプラインは、生データを検索可能なナレッジベースへと変換するためのドキュメント処理ワークフローです。ワークフローを組み立てるように、さまざまな処理ノードやツールを視覚的に組み合わせて設定し、データ処理の精度や関連性を最適化できます。 diff --git a/ja/use-dify/knowledge/knowledge-pipeline/upload-files.mdx b/ja/use-dify/knowledge/knowledge-pipeline/upload-files.mdx index 8ccc2b1b1..307b10587 100644 --- a/ja/use-dify/knowledge/knowledge-pipeline/upload-files.mdx +++ b/ja/use-dify/knowledge/knowledge-pipeline/upload-files.mdx @@ -2,7 +2,7 @@ title: "ステップ4:ファイルのアップロード" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/upload-files)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-pipeline/upload-files) を参照してください。 ナレッジパイプライン公開後は、以下2通りの方法でファイルをアップロードできます。 diff --git a/ja/use-dify/knowledge/knowledge-request-rate-limit.mdx b/ja/use-dify/knowledge/knowledge-request-rate-limit.mdx index c53ca0ad3..e0ffafae1 100644 --- a/ja/use-dify/knowledge/knowledge-request-rate-limit.mdx +++ b/ja/use-dify/knowledge/knowledge-request-rate-limit.mdx @@ -4,7 +4,7 @@ sidebarTitle: リクエスト頻度制限 tag: "CLOUD" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-request-rate-limit)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/knowledge-request-rate-limit) を参照してください。 ## ナレッジベースの要求頻度制限とは? diff --git a/ja/use-dify/knowledge/manage-knowledge/introduction.mdx b/ja/use-dify/knowledge/manage-knowledge/introduction.mdx index ef40c53be..91c65523b 100644 --- a/ja/use-dify/knowledge/manage-knowledge/introduction.mdx +++ b/ja/use-dify/knowledge/manage-knowledge/introduction.mdx @@ -3,7 +3,7 @@ title: ナレッジ設定の管理 sidebarTitle: 設定 --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/manage-knowledge/introduction)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/manage-knowledge/introduction) を参照してください。 ナレッジベースの設定を変更できるのは、ワークスペースの所有者、管理者、および編集者のみです。 diff --git a/ja/use-dify/knowledge/manage-knowledge/maintain-knowledge-documents.mdx b/ja/use-dify/knowledge/manage-knowledge/maintain-knowledge-documents.mdx index a091e0666..405391f0b 100644 --- a/ja/use-dify/knowledge/manage-knowledge/maintain-knowledge-documents.mdx +++ b/ja/use-dify/knowledge/manage-knowledge/maintain-knowledge-documents.mdx @@ -3,7 +3,7 @@ title: ナレッジコンテンツの管理 sidebarTitle: ドキュメントとチャンク --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/manage-knowledge/maintain-knowledge-documents)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/manage-knowledge/maintain-knowledge-documents) を参照してください。 ## ドキュメントの管理 diff --git a/ja/use-dify/knowledge/metadata.mdx b/ja/use-dify/knowledge/metadata.mdx index f91612298..57c7c6d8a 100644 --- a/ja/use-dify/knowledge/metadata.mdx +++ b/ja/use-dify/knowledge/metadata.mdx @@ -3,7 +3,7 @@ title: ドキュメントのメタデータを管理 sidebarTitle: メタデータ --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/metadata)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/metadata) を参照してください。 ## メタデータとは? diff --git a/ja/use-dify/knowledge/readme.mdx b/ja/use-dify/knowledge/readme.mdx index 922a026c6..a8ac1bfc4 100644 --- a/ja/use-dify/knowledge/readme.mdx +++ b/ja/use-dify/knowledge/readme.mdx @@ -3,7 +3,7 @@ title: ナレッジ sidebarTitle: 概要 --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/readme)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/readme) を参照してください。 ## はじめに diff --git a/ja/use-dify/knowledge/test-retrieval.mdx b/ja/use-dify/knowledge/test-retrieval.mdx index dd50ac54b..7814a01f4 100644 --- a/ja/use-dify/knowledge/test-retrieval.mdx +++ b/ja/use-dify/knowledge/test-retrieval.mdx @@ -3,7 +3,7 @@ title: ナレッジ検索テスト sidebarTitle: 検索テスト --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/test-retrieval)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/knowledge/test-retrieval) を参照してください。 ナレッジベース内の左サイドバーにある **検索テスト** アイコンをクリックして、テストページに移動します。 diff --git a/ja/use-dify/monitor/analysis.mdx b/ja/use-dify/monitor/analysis.mdx index 8e81ac944..0fa8e9c34 100644 --- a/ja/use-dify/monitor/analysis.mdx +++ b/ja/use-dify/monitor/analysis.mdx @@ -2,7 +2,7 @@ title: "ダッシュボード" description: "Dify の組み込み分析ダッシュボードを通じて、パフォーマンス、コスト、ユーザーエンゲージメントを監視" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/monitor/analysis)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/monitor/analysis) を参照してください。 ダッシュボードは、アプリケーションのパフォーマンスを示すために、時間の経過に伴う4つの指標を追跡します: diff --git a/ja/use-dify/monitor/annotation-reply.mdx b/ja/use-dify/monitor/annotation-reply.mdx index be26eebc8..cab3ebc1e 100644 --- a/ja/use-dify/monitor/annotation-reply.mdx +++ b/ja/use-dify/monitor/annotation-reply.mdx @@ -3,7 +3,7 @@ title: "アノテーションシステム" description: "一貫性を向上させAI生成をバイパスする高品質な応答のキュレーションライブラリを構築" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/monitor/annotation-reply)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/monitor/annotation-reply) を参照してください。 アノテーションを使用すると、特定の質問に対する完璧な応答の厳選されたライブラリを作成できます。ユーザーが類似の質問をした場合、Difyは新しい応答を生成する代わりに、事前に作成された回答を返すため、一貫性が保証され、重要なトピックにおけるAIのハルシネーションを排除できます。 diff --git a/ja/use-dify/monitor/logs.mdx b/ja/use-dify/monitor/logs.mdx index 7786585d1..de509ee86 100644 --- a/ja/use-dify/monitor/logs.mdx +++ b/ja/use-dify/monitor/logs.mdx @@ -3,7 +3,7 @@ title: "ログ" description: "リアルタイム会話の監視、問題のデバッグ、ユーザーフィードバックの収集" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/monitor/logs)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/monitor/logs) を参照してください。 会話ログは、AIアプリケーションとのすべてのやり取りに対する詳細な可視性を提供します。特定の問題をデバッグし、ユーザー行動パターンを理解し、継続的な改善のためのフィードバックを収集するためにログを使用してください。 diff --git a/ja/use-dify/nodes/agent.mdx b/ja/use-dify/nodes/agent.mdx index 9e205fd70..3a0f2f3b9 100644 --- a/ja/use-dify/nodes/agent.mdx +++ b/ja/use-dify/nodes/agent.mdx @@ -3,7 +3,7 @@ title: "エージェント" description: "複雑なタスク実行のためにLLMにツールの自律制御を与える" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/agent)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/agent) を参照してください。 エージェントノードは、LLMにツールの自律的な制御権を与え、どのツールをいつ使用するかを反復的に決定できるようにします。すべてのステップを事前に計画する代わりに、エージェントは問題を動的に推論し、複雑なタスクを完了するために必要に応じてツールを呼び出します。 diff --git a/ja/use-dify/nodes/answer.mdx b/ja/use-dify/nodes/answer.mdx index 3fa3438c6..20f250328 100644 --- a/ja/use-dify/nodes/answer.mdx +++ b/ja/use-dify/nodes/answer.mdx @@ -3,7 +3,7 @@ title: "答え" description: "チャットフローアプリケーションで応答コンテンツを定義" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/answer)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/answer) を参照してください。 Answerノードは、チャットフローアプリケーションでユーザーに配信されるコンテンツを定義します。これを使用してレスポンスをフォーマットし、テキストと変数を組み合わせ、テキスト、画像、ファイルを含むマルチモーダルコンテンツをストリーミングします。 diff --git a/ja/use-dify/nodes/code.mdx b/ja/use-dify/nodes/code.mdx index 8b16560f4..6b5b2bea5 100644 --- a/ja/use-dify/nodes/code.mdx +++ b/ja/use-dify/nodes/code.mdx @@ -3,7 +3,7 @@ title: "コード" description: "データ処理のためのカスタムPythonまたはJavaScriptの実行" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/code)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/code) を参照してください。 コードノードは、カスタムPythonまたはJavaScriptを実行して、ワークフロー内で複雑なデータ変換、計算、ロジックを処理します。事前設定されたノードが特定の処理ニーズに十分でない場合に使用してください。 diff --git a/ja/use-dify/nodes/doc-extractor.mdx b/ja/use-dify/nodes/doc-extractor.mdx index bb0a41978..31fc3d887 100644 --- a/ja/use-dify/nodes/doc-extractor.mdx +++ b/ja/use-dify/nodes/doc-extractor.mdx @@ -3,7 +3,7 @@ title: "ドキュメントエクストラクター" description: "AI処理のためにアップロードされたドキュメントからテキストコンテンツを抽出" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/doc-extractor)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/doc-extractor) を参照してください。 ドキュメントエクストラクターノードは、アップロードされたファイルを大規模言語モデルが処理できるテキストに変換します。言語モデルはPDFやDOCXなどのドキュメント形式を直接読み取ることができないため、このノードはファイルアップロードとAI分析の間の重要な橋渡し役を果たします。 diff --git a/ja/use-dify/nodes/http-request.mdx b/ja/use-dify/nodes/http-request.mdx index 9bd5c73cc..97b949ba1 100644 --- a/ja/use-dify/nodes/http-request.mdx +++ b/ja/use-dify/nodes/http-request.mdx @@ -3,7 +3,7 @@ title: "HTTP リクエスト" description: "外部APIとWebサービスに接続" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/http-request)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/http-request) を参照してください。 HTTP リクエストノードは、ワークフローを外部 API や Web サービスに接続します。データの取得、ウェブフックの送信、ファイルのアップロード、または HTTP リクエストを受け入れる任意のサービスとの統合に使用できます。 diff --git a/ja/use-dify/nodes/human-input.mdx b/ja/use-dify/nodes/human-input.mdx index 07dc6e4fa..8ffa79781 100644 --- a/ja/use-dify/nodes/human-input.mdx +++ b/ja/use-dify/nodes/human-input.mdx @@ -3,7 +3,7 @@ title: 人的介入 description: ワークフローを一時停止して、人間の入力、レビュー、または意思決定を要求します --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、 [英語版](/en/use-dify/nodes/human-input) を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/human-input) を参照してください。 **人的介入ノード** は、ワークフローを主要なポイントで一時停止し、実行を継続する前に人間による入力を要求します。 diff --git a/ja/use-dify/nodes/ifelse.mdx b/ja/use-dify/nodes/ifelse.mdx index 948edee14..5dd29f51b 100644 --- a/ja/use-dify/nodes/ifelse.mdx +++ b/ja/use-dify/nodes/ifelse.mdx @@ -3,7 +3,7 @@ title: "If-Else" description: "ワークフローに条件付きロジックと分岐を追加" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/ifelse)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/ifelse) を参照してください。 If-Elseノードは、定義した条件に基づいて実行を異なるパスにルーティングすることで、ワークフローに意思決定ロジックを追加します。変数を評価し、ワークフローが従うべき分岐を決定します。 diff --git a/ja/use-dify/nodes/iteration.mdx b/ja/use-dify/nodes/iteration.mdx index 904cf4d4d..520234886 100644 --- a/ja/use-dify/nodes/iteration.mdx +++ b/ja/use-dify/nodes/iteration.mdx @@ -3,7 +3,7 @@ title: "反復処理" description: "各要素にワークフローを適用して配列を処理" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/iteration)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/iteration) を参照してください。 反復処理ノードは、各要素に対して同じワークフローステップを順次または並列で実行することで配列を処理します。単一操作では制限に達したり非効率となるバッチ処理タスクに使用します。 diff --git a/ja/use-dify/nodes/knowledge-retrieval.mdx b/ja/use-dify/nodes/knowledge-retrieval.mdx index 3ecc97e15..27a3482ee 100644 --- a/ja/use-dify/nodes/knowledge-retrieval.mdx +++ b/ja/use-dify/nodes/knowledge-retrieval.mdx @@ -2,7 +2,7 @@ title: 知識検索 --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/knowledge-retrieval)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/knowledge-retrieval) を参照してください。 ## はじめに diff --git a/ja/use-dify/nodes/list-operator.mdx b/ja/use-dify/nodes/list-operator.mdx index dc8fe56b5..36248ee14 100644 --- a/ja/use-dify/nodes/list-operator.mdx +++ b/ja/use-dify/nodes/list-operator.mdx @@ -3,7 +3,7 @@ title: "リスト演算子" description: "配列から要素をフィルタリング、ソート、選択" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/list-operator)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/list-operator) を参照してください。 リスト演算子ノードは、配列のフィルタリング、ソート、特定の要素の選択を行います。混合ファイルアップロード、大規模なデータセット、または下流処理の前に分離や整理が必要な配列データを扱う際に使用します。 diff --git a/ja/use-dify/nodes/llm.mdx b/ja/use-dify/nodes/llm.mdx index 553900f98..3349331a6 100644 --- a/ja/use-dify/nodes/llm.mdx +++ b/ja/use-dify/nodes/llm.mdx @@ -3,7 +3,7 @@ title: "LLM" description: "テキスト生成と分析のための言語モデルを起動" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/llm)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/llm) を参照してください。 LLMノードは大規模言語モデルを呼び出してテキスト、画像、ドキュメントを処理します。設定されたモデルにプロンプトを送信し、その応答を取得します。構造化出力、コンテキスト管理、マルチモーダル入力をサポートしています。 diff --git a/ja/use-dify/nodes/loop.mdx b/ja/use-dify/nodes/loop.mdx index 14daeba6a..d8c81dd0c 100644 --- a/ja/use-dify/nodes/loop.mdx +++ b/ja/use-dify/nodes/loop.mdx @@ -3,7 +3,7 @@ title: "ループ" description: "段階的な改良で反復的なワークフローを実行" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/loop)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/loop) を参照してください。 ループノードは、各サイクルが前のサイクルの結果をベースに構築される反復的なワークフローを実行します。配列要素を独立して処理するイテレーションとは異なり、ループは各反復で進化する段階的なワークフローを作成します。 diff --git a/ja/use-dify/nodes/output.mdx b/ja/use-dify/nodes/output.mdx index 6f0805365..d8eca5f5e 100644 --- a/ja/use-dify/nodes/output.mdx +++ b/ja/use-dify/nodes/output.mdx @@ -3,7 +3,7 @@ title: "出力" description: "ワークフローの結果をエンドユーザーまたは API 呼び出し元に返す" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な点がある場合は、[英語版](/en/use-dify/nodes/output) を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/output) を参照してください。 出力ノードは、ワークフロー内の特定の変数値をエンドユーザーまたは API 呼び出し元に返します。結果を表示したい箇所に追加してください。 diff --git a/ja/use-dify/nodes/parameter-extractor.mdx b/ja/use-dify/nodes/parameter-extractor.mdx index c2149243c..c287cb955 100644 --- a/ja/use-dify/nodes/parameter-extractor.mdx +++ b/ja/use-dify/nodes/parameter-extractor.mdx @@ -3,7 +3,7 @@ title: "パラメータ抽出器" description: "LLMインテリジェンスを使用して自然言語を構造化データに変換" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/parameter-extractor)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/parameter-extractor) を参照してください。 パラメータ抽出器ノードは、大規模言語モデルのインテリジェンスを使用して、非構造化テキストを構造化データに変換します。自然言語入力と、ツール、API、その他のワークフローノードが必要とする構造化パラメータとの間の橋渡しを行います。 diff --git a/ja/use-dify/nodes/question-classifier.mdx b/ja/use-dify/nodes/question-classifier.mdx index 594c08044..c593990ba 100644 --- a/ja/use-dify/nodes/question-classifier.mdx +++ b/ja/use-dify/nodes/question-classifier.mdx @@ -3,7 +3,7 @@ title: "質問分類器" description: "ワークフローパスをルーティングするためにユーザー入力をインテリジェントに分類" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/question-classifier)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/question-classifier) を参照してください。 質問分類器ノードは、ユーザー入力をインテリジェントに分類して、会話を異なるワークフローパスにルーティングします。複雑な条件ロジックを構築する代わりに、カテゴリを定義し、大規模言語モデルにセマンティック理解に基づいて最適なものを決定させます。 diff --git a/ja/use-dify/nodes/template.mdx b/ja/use-dify/nodes/template.mdx index 627b6b822..ed04164f9 100644 --- a/ja/use-dify/nodes/template.mdx +++ b/ja/use-dify/nodes/template.mdx @@ -3,7 +3,7 @@ title: "テンプレート" description: "Jinja2テンプレートを使用してデータを変換およびフォーマット" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/template)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/template) を参照してください。 テンプレートノードは、Jinja2テンプレートを使用して複数のソースからのデータを構造化されたテキストに変換・フォーマットします。変数の結合、出力のフォーマット、下流のノードやエンドユーザー向けのデータ準備に使用します。 diff --git a/ja/use-dify/nodes/tools.mdx b/ja/use-dify/nodes/tools.mdx index ea82adcb8..ca79dcfdb 100644 --- a/ja/use-dify/nodes/tools.mdx +++ b/ja/use-dify/nodes/tools.mdx @@ -4,7 +4,7 @@ sidebarTitle: "ツール" description: "外部サービスと API に接続する" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/tools)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/tools) を参照してください。 [Dify ツール](/ja/use-dify/workspace/tools)をワークフローにスタンドアロンノードとして追加します。 diff --git a/ja/use-dify/nodes/trigger/overview.mdx b/ja/use-dify/nodes/trigger/overview.mdx index 8dcb07231..1c15eb519 100644 --- a/ja/use-dify/nodes/trigger/overview.mdx +++ b/ja/use-dify/nodes/trigger/overview.mdx @@ -3,7 +3,7 @@ title: トリガー sidebarTitle: "概要" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/trigger/overview)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/trigger/overview) を参照してください。 ## はじめに diff --git a/ja/use-dify/nodes/trigger/plugin-trigger.mdx b/ja/use-dify/nodes/trigger/plugin-trigger.mdx index 687c6c479..62f3fc17d 100644 --- a/ja/use-dify/nodes/trigger/plugin-trigger.mdx +++ b/ja/use-dify/nodes/trigger/plugin-trigger.mdx @@ -2,7 +2,7 @@ title: プラグイントリガー --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/trigger/plugin-trigger)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/trigger/plugin-trigger) を参照してください。 ## はじめに diff --git a/ja/use-dify/nodes/trigger/schedule-trigger.mdx b/ja/use-dify/nodes/trigger/schedule-trigger.mdx index 83ea1ad94..d6ebbfda6 100644 --- a/ja/use-dify/nodes/trigger/schedule-trigger.mdx +++ b/ja/use-dify/nodes/trigger/schedule-trigger.mdx @@ -2,7 +2,7 @@ title: スケジュールトリガー --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/trigger/schedule-trigger)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/trigger/schedule-trigger) を参照してください。 ## はじめに diff --git a/ja/use-dify/nodes/user-input.mdx b/ja/use-dify/nodes/user-input.mdx index c6c345fb6..a391bdeb9 100644 --- a/ja/use-dify/nodes/user-input.mdx +++ b/ja/use-dify/nodes/user-input.mdx @@ -3,7 +3,7 @@ title: "ユーザー入力" description: "ワークフローとチャットフローアプリケーションを開始するためのユーザー入力を収集します" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/user-input)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/user-input) を参照してください。 ## はじめに diff --git a/ja/use-dify/nodes/variable-aggregator.mdx b/ja/use-dify/nodes/variable-aggregator.mdx index 029f9857e..8e72badac 100644 --- a/ja/use-dify/nodes/variable-aggregator.mdx +++ b/ja/use-dify/nodes/variable-aggregator.mdx @@ -3,7 +3,7 @@ title: "変数集約器" description: "排他的なワークフローブランチを単一の出力に集約" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/variable-aggregator)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/variable-aggregator) を参照してください。 変数集約器ノードを使用すると、**排他的な** ワークフローブランチを単一の出力に集約し、下流の処理を一度だけ定義すれば済むようになります。 diff --git a/ja/use-dify/nodes/variable-assigner.mdx b/ja/use-dify/nodes/variable-assigner.mdx index ee7869a94..6c035955c 100644 --- a/ja/use-dify/nodes/variable-assigner.mdx +++ b/ja/use-dify/nodes/variable-assigner.mdx @@ -3,7 +3,7 @@ title: "変数アサイナー" description: "チャットフローアプリケーションで永続的な会話変数を管理" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/variable-assigner)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/nodes/variable-assigner) を参照してください。 変数アサイナーノードは、会話変数への書き込み(さまざまなタイプの変数については[こちら](/ja/use-dify/getting-started/key-concepts#変数)を参照)によってチャットフローアプリケーションの永続的なデータを管理します。各実行でリセットされる通常のワークフロー変数とは異なり、会話変数はチャットセッション全体を通じて持続します。 diff --git a/ja/use-dify/publish/README.mdx b/ja/use-dify/publish/README.mdx index 99826c6b4..f8b846e93 100644 --- a/ja/use-dify/publish/README.mdx +++ b/ja/use-dify/publish/README.mdx @@ -3,7 +3,7 @@ title: "AIアプリの共有" description: "Webアプリ、API、埋め込み、統合でDifyアプリケーションをユーザーに提供" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/README)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/README) を参照してください。 Difyで素晴らしいものを構築しましたね。今度はそれをユーザーに届けましょう。すべてのDifyアプリケーションは自動的に複数の方法で利用可能になります。状況に最適な方法を選択してください。 diff --git a/ja/use-dify/publish/developing-with-apis.mdx b/ja/use-dify/publish/developing-with-apis.mdx index 0d027eba4..98076a8de 100644 --- a/ja/use-dify/publish/developing-with-apis.mdx +++ b/ja/use-dify/publish/developing-with-apis.mdx @@ -3,7 +3,7 @@ title: "API統合" description: "強力なBackend-as-a-Service APIでDify AI機能をアプリケーションに直接埋め込む" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/developing-with-apis)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/developing-with-apis) を参照してください。 DifyのAPIを使用すると、AI インフラストラクチャを一から構築することなく、既存のアプリケーションにAI機能を統合できます。カスタムユーザーエクスペリエンスを作成する柔軟性と、大規模言語モデルの全ての機能を利用できます。 diff --git a/ja/use-dify/publish/publish-mcp.mdx b/ja/use-dify/publish/publish-mcp.mdx index ba1a42905..f11a51a6e 100644 --- a/ja/use-dify/publish/publish-mcp.mdx +++ b/ja/use-dify/publish/publish-mcp.mdx @@ -3,7 +3,7 @@ title: "MCPサーバー" description: "Claude Desktop、Cursor、その他のAI開発ツールと統合するためにDifyアプリケーションをMCPサーバーとして公開" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/publish-mcp)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/publish-mcp) を参照してください。 DifyはアプリケーションをMCP(Model Context Protocol)サーバーとして公開することをサポートし、Claude DesktopやCursorなどのAI開発ツールとのシームレスな統合を可能にします。これにより、これらのツールがあたかもネイティブな拡張機能であるかのように、DifyアプリケーションとDirectly対話できるようになります。 diff --git a/ja/use-dify/publish/publish-to-marketplace.mdx b/ja/use-dify/publish/publish-to-marketplace.mdx index 1c83e6c62..b2c116ed6 100644 --- a/ja/use-dify/publish/publish-to-marketplace.mdx +++ b/ja/use-dify/publish/publish-to-marketplace.mdx @@ -4,7 +4,7 @@ sidebarTitle: "マーケットプレイス" description: "アプリを Dify マーケットプレイスに公開して世界中のユーザーと共有" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/publish-to-marketplace)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/publish-to-marketplace) を参照してください。 アプリをテンプレートとして Dify マーケットプレイスに公開すると、他の Dify ユーザーが発見して利用できるようになります。 diff --git a/ja/use-dify/publish/webapp/chatflow-webapp.mdx b/ja/use-dify/publish/webapp/chatflow-webapp.mdx index 6e1be5f41..5e65b14c7 100644 --- a/ja/use-dify/publish/webapp/chatflow-webapp.mdx +++ b/ja/use-dify/publish/webapp/chatflow-webapp.mdx @@ -3,7 +3,7 @@ title: "チャット Web アプリ" description: "永続的な履歴とインタラクティブ機能を備えたフル機能の会話インターフェースにチャットフローを変換" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/webapp/chatflow-webapp)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/webapp/chatflow-webapp) を参照してください。 チャット Web アプリは、あなたのチャットフローを完全な対話体験に変換します。ユーザーは永続的なチャットセッション、スマートなインタラクション、そしてあなたが設定したすべての機能を、何もインストールすることなく利用できます。 diff --git a/ja/use-dify/publish/webapp/embedding-in-websites.mdx b/ja/use-dify/publish/webapp/embedding-in-websites.mdx index 85504e82e..c727a4801 100644 --- a/ja/use-dify/publish/webapp/embedding-in-websites.mdx +++ b/ja/use-dify/publish/webapp/embedding-in-websites.mdx @@ -4,7 +4,7 @@ sidebarTitle: "埋め込み" description: "カスタマイズ可能なウィジェットとiframe埋め込みで任意のWebサイトにAIチャット機能を追加" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/webapp/embedding-in-websites)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/webapp/embedding-in-websites) を参照してください。 Difyアプリをウェブサイトに埋め込むことで、訪問者に直接AI機能を提供できます。フローティングチャットボタン、フルスクリーンチャットインターフェース、または埋め込みウィジェットなど、Difyはあらゆるウェブサイト技術で動作する柔軟なオプションを提供します。 diff --git a/ja/use-dify/publish/webapp/web-app-access.mdx b/ja/use-dify/publish/webapp/web-app-access.mdx index c07a0b13d..298641580 100644 --- a/ja/use-dify/publish/webapp/web-app-access.mdx +++ b/ja/use-dify/publish/webapp/web-app-access.mdx @@ -3,7 +3,7 @@ title: アクセス制御 tag: "ENTERPRISE" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/webapp/web-app-access)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/webapp/web-app-access) を参照してください。 Web アプリのアクセス制御は、公開されたアプリケーションを誰が使用できるかを決定します。デフォルトでは、新しいアプリは特定のチームメンバーに制限されています—正確に誰がアクセスできるかを選択できます。 diff --git a/ja/use-dify/publish/webapp/web-app-settings.mdx b/ja/use-dify/publish/webapp/web-app-settings.mdx index 578642bba..1d9de9955 100644 --- a/ja/use-dify/publish/webapp/web-app-settings.mdx +++ b/ja/use-dify/publish/webapp/web-app-settings.mdx @@ -3,7 +3,7 @@ title: "ウェブアプリ設定" description: "公開されたWebアプリケーションのブランディング、アクセス制御、ユーザーエクスペリエンス設定を構成" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/webapp/web-app-settings)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/webapp/web-app-settings) を参照してください。 ウェブアプリ設定は、公開されたアプリケーションがエンドユーザーに対してどのように表示され、動作するかを制御します。すべてのDifyアプリケーションは、異なるデバイスや画面サイズに適応するウェブインターフェースを自動生成します。 diff --git a/ja/use-dify/publish/webapp/workflow-webapp.mdx b/ja/use-dify/publish/webapp/workflow-webapp.mdx index cbc56169c..de8685f84 100644 --- a/ja/use-dify/publish/webapp/workflow-webapp.mdx +++ b/ja/use-dify/publish/webapp/workflow-webapp.mdx @@ -3,7 +3,7 @@ title: "ワークフローWebアプリ" description: "バッチ処理、結果管理、合理化されたユーザーエクスペリエンスでワークフローを強力なWebアプリケーションに変換" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/webapp/workflow-webapp)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/publish/webapp/workflow-webapp) を参照してください。 ワークフローWebアプリは、Difyのワークフローをプロダクションレディなアプリケーションに変換し、単一実行から大規模バッチ操作まであらゆることを処理します。ユーザーは入力のためのクリーンなインターフェース、リアルタイム処理フィードバック、包括的な結果管理を得ることができます。 diff --git a/ja/use-dify/tutorials/workflow-101/lesson-01.mdx b/ja/use-dify/tutorials/workflow-101/lesson-01.mdx index 7e91e4ca5..598b6d627 100644 --- a/ja/use-dify/tutorials/workflow-101/lesson-01.mdx +++ b/ja/use-dify/tutorials/workflow-101/lesson-01.mdx @@ -2,7 +2,7 @@ title: "レッスン 1:ワークフローとは?" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-01)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-01) を参照してください。 ## 👋 Dify 101 へようこそ diff --git a/ja/use-dify/tutorials/workflow-101/lesson-02.mdx b/ja/use-dify/tutorials/workflow-101/lesson-02.mdx index 0efa1ab3c..0f7a1dd8e 100644 --- a/ja/use-dify/tutorials/workflow-101/lesson-02.mdx +++ b/ja/use-dify/tutorials/workflow-101/lesson-02.mdx @@ -3,7 +3,7 @@ title: "レッスン 2:フローの頭と尾(開始ノードと出力ノー sidebarTitle: "レッスン 2:フローの頭と尾" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-02)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-02) を参照してください。 前回のレッスンでは、ワークフローをレシピに例えました。今日は実際にキッチンに入り、材料の下ごしらえ(開始)とお皿の準備(出力)をしていきましょう。 diff --git a/ja/use-dify/tutorials/workflow-101/lesson-03.mdx b/ja/use-dify/tutorials/workflow-101/lesson-03.mdx index 08a4a0978..8d7e1a1ba 100644 --- a/ja/use-dify/tutorials/workflow-101/lesson-03.mdx +++ b/ja/use-dify/tutorials/workflow-101/lesson-03.mdx @@ -3,7 +3,7 @@ title: "レッスン 3:ワークフローの頭脳(LLM ノード)" sidebarTitle: "レッスン 3:ワークフローの頭脳" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-03)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-03) を参照してください。 ![LLM ノード](/images/use-dify/tutorial/workflow-101-lesson-03/llm-node.png) diff --git a/ja/use-dify/tutorials/workflow-101/lesson-04.mdx b/ja/use-dify/tutorials/workflow-101/lesson-04.mdx index be93c6f58..9b091735d 100644 --- a/ja/use-dify/tutorials/workflow-101/lesson-04.mdx +++ b/ja/use-dify/tutorials/workflow-101/lesson-04.mdx @@ -3,7 +3,7 @@ title: "レッスン 4:カンニングペーパー(ナレッジ検索)" sidebarTitle: "レッスン 4:カンニングペーパー" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-04)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-04) を参照してください。 前回までのレッスンで、AI メールアシスタントは基本的なメールを作成できるようになりました。しかし、もし顧客が具体的な料金プランや返金ポリシーについて質問した場合、AI はハルシネーション(Hallucination)を起こす可能性があります。つまり、自信満々にでたらめを言ってしまうということです。 diff --git a/ja/use-dify/tutorials/workflow-101/lesson-05.mdx b/ja/use-dify/tutorials/workflow-101/lesson-05.mdx index 485f7f6ff..20f8c38c0 100644 --- a/ja/use-dify/tutorials/workflow-101/lesson-05.mdx +++ b/ja/use-dify/tutorials/workflow-101/lesson-05.mdx @@ -3,7 +3,7 @@ title: "レッスン 5:ワークフローの分岐点(分類と実行)" sidebarTitle: "レッスン 5:ワークフローの分岐点" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-05)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-05) を参照してください。 現在、メールアシスタントはすべてのメールを同じワークフローで処理しています。これでは十分にスマートとは言えません。Dify の価格に関するメールと、バグ報告に関するメールでは、異なる対応が必要です。 diff --git a/ja/use-dify/tutorials/workflow-101/lesson-06.mdx b/ja/use-dify/tutorials/workflow-101/lesson-06.mdx index 911b54f33..b6c2d27c9 100644 --- a/ja/use-dify/tutorials/workflow-101/lesson-06.mdx +++ b/ja/use-dify/tutorials/workflow-101/lesson-06.mdx @@ -3,7 +3,7 @@ title: "レッスン 6:複数のタスクを処理する(パラメータ抽 sidebarTitle: "レッスン 6:複数のタスクを処理する" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-06)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-06) を参照してください。 次のようなメールが届いたとしましょう: diff --git a/ja/use-dify/tutorials/workflow-101/lesson-07.mdx b/ja/use-dify/tutorials/workflow-101/lesson-07.mdx index 4ae4085fe..991ab8693 100644 --- a/ja/use-dify/tutorials/workflow-101/lesson-07.mdx +++ b/ja/use-dify/tutorials/workflow-101/lesson-07.mdx @@ -3,7 +3,7 @@ title: "レッスン 7:ワークフローを強化する(プラグイン)" sidebarTitle: "レッスン 7:ワークフローを強化する" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-07)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-07) を参照してください。 メールアシスタントはナレッジベースを活用できるようになりました。しかし、ナレッジベースの範囲を超えた質問が来たらどうでしょうか?例えば、「Dify の最新リリースには何が含まれていますか?」のような質問です。 diff --git a/ja/use-dify/tutorials/workflow-101/lesson-08.mdx b/ja/use-dify/tutorials/workflow-101/lesson-08.mdx index d3097655f..0beb5b7d1 100644 --- a/ja/use-dify/tutorials/workflow-101/lesson-08.mdx +++ b/ja/use-dify/tutorials/workflow-101/lesson-08.mdx @@ -3,7 +3,7 @@ title: "レッスン 8:エージェントノード" sidebarTitle: "レッスン 8:エージェントノード" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-08)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-08) を参照してください。 ここまでのレッスンで、メールアシスタントに施してきたアップグレードを振り返ってみましょう。 diff --git a/ja/use-dify/tutorials/workflow-101/lesson-09.mdx b/ja/use-dify/tutorials/workflow-101/lesson-09.mdx index b9b07d72e..8c725e2ff 100644 --- a/ja/use-dify/tutorials/workflow-101/lesson-09.mdx +++ b/ja/use-dify/tutorials/workflow-101/lesson-09.mdx @@ -3,7 +3,7 @@ title: "レッスン 9:レイアウトデザイナー(テンプレート)" sidebarTitle: "レッスン 9:レイアウトデザイナー" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-09)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-09) を参照してください。 レッスン 8 では、思考と検索ができる強力なエージェントを構築しました。しかし、小さな問題に気づいたかもしれません。最後の LLM に回答をリスト形式で出力するよう指示しても、フォーマットが乱れたり統一されなかったりすることがあります(例:箇条書きと段落が混在するなど)。 diff --git a/ja/use-dify/tutorials/workflow-101/lesson-10.mdx b/ja/use-dify/tutorials/workflow-101/lesson-10.mdx index 4d71a4532..b006eb7dc 100644 --- a/ja/use-dify/tutorials/workflow-101/lesson-10.mdx +++ b/ja/use-dify/tutorials/workflow-101/lesson-10.mdx @@ -3,7 +3,7 @@ title: "レッスン 10:AIアプリを公開してモニタリングする" sidebarTitle: "レッスン 10:公開とモニタリング" --- - ⚠️ このドキュメントはAIによって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-10)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/tutorials/workflow-101/lesson-10) を参照してください。 ここまでの構築とチューニングを経て、メールアシスタントは完成しました。ナレッジベースの参照、検索ツールの使用、きれいにフォーマットされた返信の生成ができるようになっています。しかし現時点では、まだ Dify Studio の中にあり、あなただけしか見ることができません。 diff --git a/ja/use-dify/workspace/app-management.mdx b/ja/use-dify/workspace/app-management.mdx index 70cb65235..6349e86aa 100644 --- a/ja/use-dify/workspace/app-management.mdx +++ b/ja/use-dify/workspace/app-management.mdx @@ -3,7 +3,7 @@ title: "アプリの管理" description: "強力な管理ツールとベストプラクティスでAIアプリケーションを整理、維持、共有" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/app-management)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/app-management) を参照してください。 アプリを適切に管理することは、生産性の高いAI開発にとって重要です。Difyは、アプリケーションのライフサイクル全体を通じて、整理、共有、保守を行うための包括的なツールを提供します。 diff --git a/ja/use-dify/workspace/model-providers.mdx b/ja/use-dify/workspace/model-providers.mdx index 38cbec3ac..621f1324c 100644 --- a/ja/use-dify/workspace/model-providers.mdx +++ b/ja/use-dify/workspace/model-providers.mdx @@ -3,7 +3,7 @@ title: "モデルプロバイダー" description: "ワークスペースのAIモデルアクセスを設定—すべてのアプリケーションを支える基盤" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/model-providers)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/model-providers) を参照してください。 モデルプロバイダーは、ワークスペースにAIモデルへのアクセスを提供します。構築するすべてのアプリケーションには動作するためのモデルが必要であり、ワークスペースレベルでプロバイダーを設定することで、すべてのチームメンバーがすべてのプロジェクトでモデルを使用できます。 diff --git a/ja/use-dify/workspace/personal-account-management.mdx b/ja/use-dify/workspace/personal-account-management.mdx index 5ce9b336e..782b6e5cc 100644 --- a/ja/use-dify/workspace/personal-account-management.mdx +++ b/ja/use-dify/workspace/personal-account-management.mdx @@ -3,7 +3,7 @@ title: "個人設定" description: "すべてのワークスペースでプロフィールと設定を管理" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/personal-account-management)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/personal-account-management) を参照してください。 あなたの個人アカウントは、所属するすべてのワークスペースにまたがります。プロフィール設定、言語設定、ログイン認証情報はどこでも引き継がれますが、各ワークスペースは独自のチームダイナミクスと権限を維持します。 diff --git a/ja/use-dify/workspace/readme.mdx b/ja/use-dify/workspace/readme.mdx index d0926d5e9..b41073f81 100644 --- a/ja/use-dify/workspace/readme.mdx +++ b/ja/use-dify/workspace/readme.mdx @@ -3,7 +3,7 @@ title: "概要" description: "ワークスペースは Dify の基本的な組織単位であり、チームが構築、設定、管理するすべてのリソースがワークスペース内に存在します" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/readme)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/readme) を参照してください。 ワークスペースは、Difyにおけるチームの完全なAI環境です。アプリケーション、知識ベース、チームメンバー、モデル設定、プラグイン、請求など、組織に必要なすべてを含み、分離します。 @@ -43,9 +43,9 @@ Difyのすべてのリソースはワークスペースに属します。アプ ワークスペースの役割は、すべてのリソースにわたるアクセスを決定します: - **オーナー**は請求、モデルプロバイダー、ワークスペース設定を制御します -- **管理者**はチームメンバーを管理し、モデル/プラグインを設定しますアプリケーションを構築し、知識ベースを管理します +- **管理者**はチームメンバーを管理し、モデル/プラグインを設定します +- **エディター**はアプリケーションを構築し、知識ベースを管理します - **メンバー**は公開されたアプリケーションを使用します -- **データセットオペレーター**は知識ベース管理に専念します ## ワークスペースナビゲーション diff --git a/ja/use-dify/workspace/team-members-management.mdx b/ja/use-dify/workspace/team-members-management.mdx index 54de14564..7d6593f60 100644 --- a/ja/use-dify/workspace/team-members-management.mdx +++ b/ja/use-dify/workspace/team-members-management.mdx @@ -3,51 +3,47 @@ title: "メンバーの管理" description: "効果的な AI チームを構築するためにワークスペースメンバー、ロール、権限を管理" --- - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/team-members-management)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/team-members-management) を参照してください。 -Difyのチーム管理は**ワークフロー**中心です。**ワークフロー**にメンバーを追加すると、割り当てられた役割に基づいて**ワークフロー**リソースへのアクセス権が付与されます。これらの役割を理解することで、安全で生産的なAIチームを構築できます。 +Difyのチーム管理はワークスペース中心です。ワークスペースにメンバーを追加すると、割り当てられた役割に基づいてワークスペースリソースへのアクセス権が付与されます。これらの役割を理解することで、安全で生産的なAIチームを構築できます。 ## チームサイズの制限 -お使いのDifyエディションに基づいて、**ワークフロー**には異なる数のチームメンバーを含めることができます: +お使いのDifyエディションに基づいて、ワークスペースには異なる数のチームメンバーを含めることができます: - **Free**: 1メンバー(個人開発) - **Professional**: 3メンバー(小規模チーム) -- **Team**: 無制限メンバー(成長企業) +- **Team**: 50メンバー(成長企業) - **Community/Enterprise**: 無制限メンバー(セルフホスト) -## **ワークフロー**の役割 +## ワークスペースの役割 - **完全な**ワークフロー**制御。** **ワークフロー**ごとに1人のオーナーのみ。すべてのチームメンバー、請求、**モデルプロバイダー**を管理し、**ワークフロー**を削除できます。他のメンバーに所有権を譲渡することはできません。 + **完全なワークスペース制御。** ワークスペースごとに1人のオーナーのみ。すべてのチームメンバー、請求、モデルプロバイダーを管理し、ワークスペースを削除できます。他のメンバーに所有権を譲渡することはできません。 - **チームとリソース管理。** チームメンバーの追加/削除、**モデルプロバイダー**の設定、すべてのアプリケーションの管理、プラグインのインストールが可能です。メンバーの役割変更や請求管理はできません。 + **チームとリソース管理。** チームメンバーの追加/削除、モデルプロバイダーの設定、すべてのアプリケーションの管理、プラグインのインストールが可能です。メンバーの役割変更や請求管理はできません。 - **アプリケーション開発。** アプリケーションの作成、編集、削除、**知識ベース**の管理、すべての**ワークフロー**ツールの使用が可能です。チームメンバーの管理やプロバイダーの設定はできません。 + **アプリケーション開発。** アプリケーションの作成、編集、削除、知識ベースの管理、すべてのワークスペースツールの使用が可能です。チームメンバーの管理やプロバイダーの設定はできません。 **アプリケーション使用のみ。** 公開されたアプリケーションとアクセス権のあるツールを使用できます。アプリケーションの作成や変更はできません。 - - - ****知識ベース**スペシャリスト。** データセットと**知識ベース**の管理に特化した役割。**知識ベース**の作成と管理ができますが、アプリケーションアクセスは限定的です。 - ## チームメンバーの追加 -**ワークフロー**オーナーのみが新しいチームメンバーを招待できます: +ワークスペースオーナーのみが新しいチームメンバーを招待できます: - **ワークフロー**で設定 → メンバーに移動します。 + ワークスペースで設定 → メンバーに移動します。 @@ -55,34 +51,34 @@ Difyのチーム管理は**ワークフロー**中心です。**ワークフロ - 新規ユーザーは登録メールを受け取ります。既存のDifyユーザーは即座に追加され、**ワークフロー**スイッチャーを通じて**ワークフロー**にアクセスできます。 + 新規ユーザーは登録メールを受け取ります。既存のDifyユーザーは即座に追加され、ワークスペーススイッチャーを通じてワークスペースにアクセスできます。 -Communityようにメールサービス設定が必要です。 +Community Edition では、招待を正しく機能させるために、メールサービスの設定が必要です。 ## メンバー管理 -**メンバーの削除**: **ワークフロー**オーナーのみがチームメンバーを削除できます。削除されると、メンバーは即座に**ワークフロー**アクセスを失いますが、彼らが作成したアプリケーションは**ワークフロー**に残ります。 +**メンバーの削除**: ワークスペースオーナーのみがチームメンバーを削除できます。削除されると、メンバーは即座にワークスペースアクセスを失いますが、彼らが作成したアプリケーションはワークスペースに残ります。 -**役割変更**: **ワークフロー**オーナーのみがメンバーの役割を変更できます。役割変更は即座に有効になり、メンバーが**ワークフロー**全体でアクセスできる内容を変更します。 +**役割変更**: ワークスペースオーナーのみがメンバーの役割を変更できます。役割変更は即座に有効になり、メンバーがワークスペース全体でアクセスできる内容を変更します。 -**複数のワークフロー**: チームメンバーは複数の**ワークフロー**に所属できます。左上のセレクターを使用して**ワークフロー**間を切り替えます。 +**複数のワークスペース**: チームメンバーは複数のワークスペースに所属できます。左上のセレクターを使用してワークスペース間を切り替えます。 ## アクセスパターン -**リソース継承**: すべての**ワークフロー**リソース(**モデルプロバイダー**、プラグイン、**知識ベース**)は、役割権限に基づいてチームメンバーが利用できます。 +**リソース継承**: すべてのワークスペースリソース(モデルプロバイダー、プラグイン、知識ベース)は、役割権限に基づいてチームメンバーが利用できます。 **アプリケーションアクセス**: メンバーは共有設定と役割に基づいてアプリケーションを表示します。オーナーとAdminはすべてのアプリケーションを表示します。Editorは変更可能なアプリケーションを表示します。Memberは使用許可されている公開アプリケーションのみを表示します。 -**設定アクセス**: **ワークフロー**レベルで設定された**モデルプロバイダー**とプラグインは、適切な権限を持つチームメンバーが作成したすべてのアプリケーションで利用可能になります。 +**設定アクセス**: ワークスペースレベルで設定されたモデルプロバイダーとプラグインは、適切な権限を持つチームメンバーが作成したすべてのアプリケーションで利用可能になります。 ## セキュリティに関する考慮事項 **最小権限の原則**: 最小限の権限から始めて、実証されたニーズと信頼に基づいて役割をアップグレードします。 -**定期的なアクセスレビュー**: チームメンバーの役割を定期的に確認し、**ワークフロー**アクセスが不要になったメンバーを削除します。 +**定期的なアクセスレビュー**: チームメンバーの役割を定期的に確認し、ワークスペースアクセスが不要になったメンバーを削除します。 -**機密設定**: **モデルプロバイダー**のAPIキーと請求を制御するため、信頼できるチームメンバーのみがAdminまたはOwner役割を持つべきです。 \ No newline at end of file +**機密設定**: モデルプロバイダーのAPIキーと請求を制御するため、信頼できるチームメンバーのみがAdminまたはOwner役割を持つべきです。 \ No newline at end of file diff --git a/ja/use-dify/workspace/tools.mdx b/ja/use-dify/workspace/tools.mdx index 414fcfdb0..88b346db5 100644 --- a/ja/use-dify/workspace/tools.mdx +++ b/ja/use-dify/workspace/tools.mdx @@ -5,7 +5,7 @@ description: "LLM が外部サービスや API と連携するためのツール --- -⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/tools)を参照してください。 +⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/use-dify/workspace/tools) を参照してください。 Dify のツールを使うと、LLM が外部サービスや API と連携し、リアルタイムデータへのアクセスやアクション(Web 検索、データベースクエリ、コンテンツ処理など)の実行が可能になります。 diff --git a/tools/translate/formatting-ja.md b/tools/translate/formatting-ja.md index d08a1dd74..260197482 100644 --- a/tools/translate/formatting-ja.md +++ b/tools/translate/formatting-ja.md @@ -172,7 +172,7 @@ Use minimal honorifics. Be polite but not overly formal. Every translated page must include the translation disclaimer directly below the frontmatter, before any body content: ```mdx - ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/path/to/page)を参照してください。 + ⚠️ このドキュメントは AI によって自動翻訳されています。不正確な部分がある場合は、[英語版](/en/path/to/page) を参照してください。 ``` Keep the disclaimer regardless of whether the page has been human-reviewed. The English source is always the canonical version, and readers benefit from a consistent pointer to it on every translated page. diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin.mdx index 930c45e24..f8b0dc060 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin.mdx @@ -2,7 +2,7 @@ title: Agent 策略插件 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/agent-strategy-plugin)。 **Agent 策略插件**帮助 LLM 执行推理或决策等任务,包括选择和调用工具以及处理结果。这使系统能够更自主地解决问题。 diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/cheatsheet.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/cheatsheet.mdx index 30328c419..09260bec0 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/cheatsheet.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/cheatsheet.mdx @@ -10,7 +10,7 @@ title: Dify 插件开发速查表 description: Dify 插件开发的综合参考指南,包括环境要求、安装方法、开发流程、插件类别和类型、常用代码片段以及常见问题解决方案。适合开发者快速查阅和参考。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/cheatsheet)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/cheatsheet)。 ### 环境要求 diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider.mdx index 3bfcea316..2b9ac9b56 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider.mdx @@ -10,7 +10,7 @@ title: 模型供应商插件 description: 本综合指南提供了创建模型供应商插件的详细说明,涵盖项目初始化、目录结构组织、模型配置方法、编写供应商代码以及实现模型集成,并附有核心 API 实现的详细示例。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/creating-new-model-provider)。 ### 前提条件 diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin.mdx index e69623275..9c72167af 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin.mdx @@ -2,7 +2,7 @@ title: "数据源插件" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/datasource-plugin)。 数据源插件是 Dify 1.9.0 中引入的一种新型插件。在知识库管道中,它们作为文档数据源和整个管道的起点。 diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin.mdx index 6e882e762..8bc8d6aba 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin.mdx @@ -10,7 +10,7 @@ title: 开发 Slack Bot 插件 description: 本指南提供了开发 Slack Bot 插件的完整演练,涵盖项目初始化、配置表单编辑、功能实现、调试、端点设置、验证和打包。你需要 Dify 插件脚手架工具和预先创建的 Slack App 来在 Slack 上构建 AI 驱动的聊天机器人。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-a-slack-bot-plugin)。 **你将学到**: diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin.mdx index 42283ffc1..343c8d8c4 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin.mdx @@ -5,7 +5,7 @@ language: en standard_title: 10-Minute Guide to Building Dify Plugins --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-flomo-plugin)。 ## 你将构建什么 diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter.mdx index 1edabba05..049351e32 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter.mdx @@ -5,7 +5,7 @@ language: en standard_title: Building a Markdown Exporter Plugin --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-md-exporter)。 ## 你将构建什么 diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool.mdx index c18444d1d..0462f17d7 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool.mdx @@ -2,7 +2,7 @@ title: 构建在知识流水线中处理多模态数据的工具插件 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/develop-multimodal-data-processing-tool)。 在知识流水线中,知识库节点支持两种多模态数据格式的入参:`multimodal-Parent-Child` 和 `multimodal-General`。 diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/endpoint.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/endpoint.mdx index acd147f72..9e312d50c 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/endpoint.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/endpoint.mdx @@ -14,7 +14,7 @@ description: Authors Yeuoly, Allen. This document details the structure and impl of various YAML configuration fields. --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/endpoint)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/endpoint)。 # Endpoint diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/tool-oauth.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/tool-oauth.mdx index f6a99e9cc..d5e3278f7 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/tool-oauth.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/tool-oauth.mdx @@ -2,7 +2,7 @@ title: "为工具插件添加 OAuth 支持" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/tool-oauth)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/tool-oauth)。 ![OAuth 授权示例](/images/develop-plugin/dev-guide/oauth-authorize-example.png) diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/tool-plugin.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/tool-plugin.mdx index 9a401dac6..fcac15989 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/tool-plugin.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/tool-plugin.mdx @@ -10,7 +10,7 @@ title: 工具插件 description: 本文档提供了如何为 Dify 开发工具插件的详细说明,以 Google Search 为例演示完整的工具插件开发流程。内容包括插件初始化、模板选择、工具提供者配置文件定义、添加第三方服务凭据、工具功能代码实现、调试以及打包发布。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/tool-plugin)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/tool-plugin)。 工具是指可以被 Chatflow / Workflow / Agent 类型应用调用的第三方服务,提供完整的 API 实现能力来增强 Dify 应用。例如,添加在线搜索、图像生成等额外功能。 diff --git a/zh/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx b/zh/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx index 19bd6ef73..48241a943 100644 --- a/zh/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx +++ b/zh/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin.mdx @@ -2,7 +2,7 @@ title: "触发器插件" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/dev-guides-and-walkthroughs/trigger-plugin)。 ## 什么是触发器插件? diff --git a/zh/develop-plugin/features-and-specs/advanced-development/bundle.mdx b/zh/develop-plugin/features-and-specs/advanced-development/bundle.mdx index e6f94b128..445d1afb9 100644 --- a/zh/develop-plugin/features-and-specs/advanced-development/bundle.mdx +++ b/zh/develop-plugin/features-and-specs/advanced-development/bundle.mdx @@ -10,7 +10,7 @@ title: Bundle 插件包 description: 本文档介绍 Bundle 插件包的概念和开发方法。Bundle 插件包可以将多个插件聚合在一起,支持三种类型(Marketplace、GitHub 和 Package)。文档详细介绍了创建 Bundle 项目、添加不同类型依赖以及打包 Bundle 项目的整个流程。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/advanced-development/bundle)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/advanced-development/bundle)。 Bundle 插件包是多个插件的集合。它允许在单个插件中打包多个插件,实现批量安装并提供更强大的服务。 diff --git a/zh/develop-plugin/features-and-specs/advanced-development/customizable-model.mdx b/zh/develop-plugin/features-and-specs/advanced-development/customizable-model.mdx index e34133b66..45225a166 100644 --- a/zh/develop-plugin/features-and-specs/advanced-development/customizable-model.mdx +++ b/zh/develop-plugin/features-and-specs/advanced-development/customizable-model.mdx @@ -10,7 +10,7 @@ title: 集成自定义模型 description: 本文档详细介绍了如何将自定义模型集成到 Dify 中,以 Xinference 模型为例。它涵盖了完整的流程,包括创建模型供应商文件、根据模型类型编写代码、实现模型调用逻辑、处理异常、调试和发布。具体详细说明了 LLM 调用、令牌计算、凭据验证和参数生成等核心方法的实现。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/advanced-development/customizable-model)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/advanced-development/customizable-model)。 **自定义模型**是指您自行部署或配置的 LLM。本文档以 [Xinference 模型](https://inference.readthedocs.io/en/latest/)为例,演示如何将自定义模型集成到您的**模型插件**中。 diff --git a/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app.mdx b/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app.mdx index 2ff22a891..18e514f9b 100644 --- a/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app.mdx +++ b/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app.mdx @@ -10,7 +10,7 @@ title: 应用 description: 本文档详细介绍了插件如何在 Dify 平台内反向调用应用服务。涵盖三种接口类型:Chat 接口(用于 Chatbot/Agent/Chatflow 应用)、工作流接口和 Completion 接口,为每种接口提供入口点、调用规范和实用代码示例。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-app)。 反向调用应用意味着插件可以访问 Dify 内应用的数据。此模块支持流式和非流式应用调用。如果你不熟悉反向调用的基本概念,请先阅读[反向调用 Dify 服务](/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation)。 diff --git a/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model.mdx b/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model.mdx index b13e28ae1..6a375a858 100644 --- a/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model.mdx +++ b/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model.mdx @@ -10,7 +10,7 @@ title: 反向调用模型 description: 本文档详细介绍了插件如何在 Dify 平台内反向调用模型服务。涵盖了反向调用 LLM、Summary、TextEmbedding、Rerank、TTS、Speech2Text 和 Moderation 模型的具体方法。每个模型调用都包括其入口点、接口参数说明、实际使用代码示例以及调用模型的最佳实践建议。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-model)。 反向调用模型是指插件能够调用 Dify 内部的 LLM 能力,包括平台内的所有模型类型和功能,如 TTS、Rerank 等。如果您不熟悉反向调用的基本概念,请先阅读[反向调用 Dify 服务](/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation)。 diff --git a/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node.mdx b/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node.mdx index 91b9281a3..ffdcdfc72 100644 --- a/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node.mdx +++ b/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node.mdx @@ -10,7 +10,7 @@ title: 节点 description: 本文档描述了插件如何在 Dify 平台内反向调用 Chatflow/Workflow 应用节点的功能。主要涵盖两个特定节点 ParameterExtractor 和 QuestionClassifier 的调用方法。文档详细介绍了调用这两个节点的入口、接口参数和示例代码。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-node)。 反向调用节点意味着插件可以访问 Dify Chatflow/工作流应用中某些节点的能力。 diff --git a/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool.mdx b/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool.mdx index 5135e3984..990372c48 100644 --- a/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool.mdx +++ b/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool.mdx @@ -10,7 +10,7 @@ title: 工具 description: 本文档详细介绍了插件如何在 Dify 平台内反向调用工具服务。涵盖三种工具调用方式:调用已安装工具(Built-in Tool)、调用工作流作为工具(Workflow as Tool)以及调用自定义工具(Custom Tool)。每种方式都包含相应的入口点和接口参数说明。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation-tool)。 反向调用工具意味着插件可以调用 Dify 平台内的其他工具类型插件。如果您不熟悉反向调用的基本概念,请先阅读[反向调用 Dify 服务](/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation)。 diff --git a/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation.mdx b/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation.mdx index c7132a78b..5347417c7 100644 --- a/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation.mdx +++ b/zh/develop-plugin/features-and-specs/advanced-development/reverse-invocation.mdx @@ -10,7 +10,7 @@ title: Dify 服务的反向调用 description: 本文档简要介绍了 Dify 插件的反向调用能力,即插件可以调用 Dify 主平台内的指定服务。文中列出了四种可调用的模块类型:App(访问应用数据)、Model(调用平台内的模型能力)、Tool(调用平台内的其他工具插件)和 Node(调用 Chatflow/Workflow 应用内的节点)。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/advanced-development/reverse-invocation)。 插件可以自由调用 Dify 主平台内的一些服务来增强其能力。 diff --git a/zh/develop-plugin/features-and-specs/plugin-types/general-specifications.mdx b/zh/develop-plugin/features-and-specs/plugin-types/general-specifications.mdx index 4b1ace91c..0492a5882 100644 --- a/zh/develop-plugin/features-and-specs/plugin-types/general-specifications.mdx +++ b/zh/develop-plugin/features-and-specs/plugin-types/general-specifications.mdx @@ -10,7 +10,7 @@ title: 通用规范 description: 本文将简要介绍插件开发中的常见结构。在开发过程中,强烈建议结合[插件开发基本概念](/zh/develop-plugin/getting-started/getting-started-dify-plugin)和[开发者速查表](/zh/develop-plugin/getting-started/cli)一起阅读,以便更好地理解整体架构。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/zh/develop-plugin/features-and-specs/plugin-types/general-specifications)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/plugin-types/general-specifications)。 ### 路径规范 diff --git a/zh/develop-plugin/features-and-specs/plugin-types/model-designing-rules.mdx b/zh/develop-plugin/features-and-specs/plugin-types/model-designing-rules.mdx index f8e7fd6a5..43903a819 100644 --- a/zh/develop-plugin/features-and-specs/plugin-types/model-designing-rules.mdx +++ b/zh/develop-plugin/features-and-specs/plugin-types/model-designing-rules.mdx @@ -10,7 +10,7 @@ title: 模型规范 description: 本文档详细定义了 Dify 模型插件开发的核心概念和结构,包括模型供应商(Provider)、AI 模型实体(AIModelEntity)、模型类型(ModelType)、配置方法(ConfigurateMethod)、模型特性(ModelFeature)、参数规则(ParameterRule)、价格配置(PriceConfig)以及各种凭据模式的详细数据结构规范。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/plugin-types/model-designing-rules)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/plugin-types/model-designing-rules)。 * 模型供应商规则基于 [Provider](#provider) 实体。 * 模型规则基于 [AIModelEntity](#aimodelentity) 实体。 diff --git a/zh/develop-plugin/features-and-specs/plugin-types/model-schema.mdx b/zh/develop-plugin/features-and-specs/plugin-types/model-schema.mdx index 59aa51d0c..3f330bbcb 100644 --- a/zh/develop-plugin/features-and-specs/plugin-types/model-schema.mdx +++ b/zh/develop-plugin/features-and-specs/plugin-types/model-schema.mdx @@ -10,7 +10,7 @@ title: 模型 API 接口 description: Dify 模型插件 API 的综合指南,包括 LLM、TextEmbedding、Rerank、Speech2text 和 Text2speech 模型的实现要求,以及所有相关数据结构的详细规范。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/plugin-types/model-schema)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/plugin-types/model-schema)。 ## 简介 diff --git a/zh/develop-plugin/features-and-specs/plugin-types/multilingual-readme.mdx b/zh/develop-plugin/features-and-specs/plugin-types/multilingual-readme.mdx index 31f82ef7a..c18c05c4d 100644 --- a/zh/develop-plugin/features-and-specs/plugin-types/multilingual-readme.mdx +++ b/zh/develop-plugin/features-and-specs/plugin-types/multilingual-readme.mdx @@ -10,7 +10,7 @@ title: 多语言 README description: 本文介绍 Dify 插件多语言 README 的文件规范及其在 Dify Marketplace 中的显示规则。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/plugin-types/multilingual-readme)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/plugin-types/multilingual-readme)。 你可以为插件创建多语言 README,这些 README 将根据用户的首选语言显示在 [Dify Marketplace](https://marketplace.dify.ai) 和其他位置。 diff --git a/zh/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv.mdx b/zh/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv.mdx index edfa5484c..876f2ccb4 100644 --- a/zh/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv.mdx +++ b/zh/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv.mdx @@ -10,7 +10,7 @@ title: 持久化存储 description: 了解如何使用内置的键值数据库在 Dify 插件中实现持久化存储,以在多次交互中维护状态。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/plugin-types/persistent-storage-kv)。 ## 概述 diff --git a/zh/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest.mdx b/zh/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest.mdx index 3e2b395d5..d1c72cc6c 100644 --- a/zh/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest.mdx +++ b/zh/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest.mdx @@ -9,7 +9,7 @@ language: en title: Manifest --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/plugin-types/plugin-info-by-manifest)。 Manifest 是一个符合 YAML 规范的文件,定义了**插件**最基本的信息,包括但不限于插件名称、作者、包含的工具、模型等。关于插件的整体架构,请参阅[插件开发基本概念](/zh/develop-plugin/getting-started/getting-started-dify-plugin)和[开发者速查表](/zh/develop-plugin/dev-guides-and-walkthroughs/cheatsheet)。 diff --git a/zh/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin.mdx b/zh/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin.mdx index 4d3f032c2..5cd236cef 100644 --- a/zh/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin.mdx +++ b/zh/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin.mdx @@ -10,7 +10,7 @@ title: 插件调试 description: 本文档介绍如何使用 Dify 的远程调试功能来测试插件。文档详细说明了如何获取调试信息、配置环境变量文件、启动插件远程调试以及验证插件安装状态。通过这种方法,开发者可以在本地开发的同时,在 Dify 环境中实时测试插件。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/plugin-types/remote-debug-a-plugin)。 完成插件开发后,下一步是测试插件能否正常工作。Dify 提供了便捷的远程调试方法,帮助你在测试环境中快速验证插件功能。 diff --git a/zh/develop-plugin/features-and-specs/plugin-types/tool.mdx b/zh/develop-plugin/features-and-specs/plugin-types/tool.mdx index 5d381a4a9..5ae32c0e1 100644 --- a/zh/develop-plugin/features-and-specs/plugin-types/tool.mdx +++ b/zh/develop-plugin/features-and-specs/plugin-types/tool.mdx @@ -10,7 +10,7 @@ title: 工具返回 description: 本文档详细介绍了 Dify 插件中工具的数据结构和使用方法。涵盖如何返回不同类型的消息(图片 URL、链接、文本、文件、JSON)、如何创建变量和流式变量消息,以及如何定义工具输出变量模式以便在工作流中引用。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/features-and-specs/plugin-types/tool)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/features-and-specs/plugin-types/tool)。 ## 概述 diff --git a/zh/develop-plugin/getting-started/cli.mdx b/zh/develop-plugin/getting-started/cli.mdx index 0338cde25..536291e55 100644 --- a/zh/develop-plugin/getting-started/cli.mdx +++ b/zh/develop-plugin/getting-started/cli.mdx @@ -10,7 +10,7 @@ title: CLI description: Dify 插件开发命令行界面 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/getting-started/cli)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/getting-started/cli)。 使用命令行界面(CLI)设置和打包你的 Dify 插件。CLI 提供了一种简化的方式来管理你的插件开发工作流,从初始化到打包。 diff --git a/zh/develop-plugin/getting-started/getting-started-dify-plugin.mdx b/zh/develop-plugin/getting-started/getting-started-dify-plugin.mdx index 3c9701bf3..e2b73df7a 100644 --- a/zh/develop-plugin/getting-started/getting-started-dify-plugin.mdx +++ b/zh/develop-plugin/getting-started/getting-started-dify-plugin.mdx @@ -9,7 +9,7 @@ language: en title: Dify 插件 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/getting-started/getting-started-dify-plugin)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/getting-started/getting-started-dify-plugin)。 Dify 插件是模块化组件,可为 AI 应用添加额外的功能。它们允许你将外部服务、自定义功能和专业工具集成到基于 Dify 构建的 AI 应用中。 diff --git a/zh/develop-plugin/publishing/faq/faq.mdx b/zh/develop-plugin/publishing/faq/faq.mdx index accd8433d..c3ac62e3a 100644 --- a/zh/develop-plugin/publishing/faq/faq.mdx +++ b/zh/develop-plugin/publishing/faq/faq.mdx @@ -12,7 +12,7 @@ title: 常见问题 description: 本文档解答了关于 Dify 插件开发和安装的常见问题,包括如何解决插件上传失败(通过修改 author 字段)以及如何处理插件安装时的验证异常(通过设置 FORCE_VERIFYING_SIGNATURE 环境变量)。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/publishing/faq/faq)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/publishing/faq/faq)。 ## 安装时插件上传失败怎么办? diff --git a/zh/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr.mdx b/zh/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr.mdx index 5dc53d418..8a6dea2f7 100644 --- a/zh/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr.mdx +++ b/zh/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr.mdx @@ -10,7 +10,7 @@ title: 通过 PR 自动发布插件 description: 本文档介绍如何使用 GitHub Actions 自动化 Dify 插件的发布流程,包括配置步骤、参数说明和使用方法,帮助插件开发者简化发布流程,无需手动干预。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/publishing/marketplace-listing/plugin-auto-publish-pr)。 ### 背景 diff --git a/zh/develop-plugin/publishing/marketplace-listing/release-by-file.mdx b/zh/develop-plugin/publishing/marketplace-listing/release-by-file.mdx index 01f766a40..b60b325d4 100644 --- a/zh/develop-plugin/publishing/marketplace-listing/release-by-file.mdx +++ b/zh/develop-plugin/publishing/marketplace-listing/release-by-file.mdx @@ -10,7 +10,7 @@ title: 打包为本地文件并分享 description: 本文档详细介绍了如何将 Dify 插件项目打包为本地文件并与他人分享。内容涵盖打包插件前的准备工作、使用 Dify 插件开发工具执行打包命令、如何安装生成的 .difypkg 文件,以及如何与其他用户分享插件文件。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/publishing/marketplace-listing/release-by-file)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/publishing/marketplace-listing/release-by-file)。 完成插件开发后,你可以将插件项目打包为本地文件并与他人分享。获取插件文件后,可以将其安装到 Dify 工作区。如果你还没有开发过插件,可以参考[插件开发:Hello World 指南](/zh/develop-plugin/dev-guides-and-walkthroughs/tool-plugin)。 diff --git a/zh/develop-plugin/publishing/marketplace-listing/release-overview.mdx b/zh/develop-plugin/publishing/marketplace-listing/release-overview.mdx index 13e0f0fcb..faf0bbdc3 100644 --- a/zh/develop-plugin/publishing/marketplace-listing/release-overview.mdx +++ b/zh/develop-plugin/publishing/marketplace-listing/release-overview.mdx @@ -10,7 +10,7 @@ title: 发布插件 description: 本文档介绍了三种发布 Dify 插件的方式——官方 Marketplace、开源 GitHub 仓库和本地插件文件包。详细说明了每种方式的特点、发布流程和适用场景,并提供了具体的发布建议,以满足不同开发者的需求。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/publishing/marketplace-listing/release-overview)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/publishing/marketplace-listing/release-overview)。 ### 发布方式 diff --git a/zh/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace.mdx b/zh/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace.mdx index a2aed1202..894fd6c24 100644 --- a/zh/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace.mdx +++ b/zh/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace.mdx @@ -10,7 +10,7 @@ title: 发布到 Dify Marketplace description: 本指南详细介绍了将插件发布到 Dify Marketplace 的完整流程,包括提交 PR、审核流程、发布后维护以及其他关键步骤和注意事项。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/publishing/marketplace-listing/release-to-dify-marketplace)。 Dify Marketplace 欢迎合作伙伴和社区开发者提交插件。您的贡献将进一步丰富 Dify 插件的可能性。本指南提供清晰的发布流程和最佳实践建议,帮助您的插件顺利发布并为社区带来价值。如果您还没有开发过插件,可以参考[插件开发:Hello World 指南](/zh/develop-plugin/dev-guides-and-walkthroughs/tool-plugin)。 diff --git a/zh/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo.mdx b/zh/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo.mdx index 237b031b6..f7661f6d5 100644 --- a/zh/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo.mdx +++ b/zh/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo.mdx @@ -10,7 +10,7 @@ title: 发布到个人 GitHub 仓库 description: 本文档详细介绍了如何将 Dify 插件发布到个人 GitHub 仓库,包括准备工作、初始化本地插件仓库、连接远程仓库、上传插件文件、打包插件代码以及通过 GitHub 安装插件的完整流程。此方法允许开发者完全管理自己的插件代码和更新。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/publishing/marketplace-listing/release-to-individual-github-repo)。 ### 发布方式 diff --git a/zh/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct.mdx b/zh/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct.mdx index 1d0ffcd21..e5b394c71 100644 --- a/zh/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct.mdx +++ b/zh/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct.mdx @@ -10,7 +10,7 @@ title: 插件开发指南 description: 为了确保 Dify Marketplace 中所有插件的质量,并为 Dify Marketplace 用户提供一致的高质量体验,您在提交插件进行审核时必须遵守这些插件开发指南中列出的所有要求。提交插件即表示**您确认已阅读、理解并同意遵守以下所有条款**。遵循这些指南将帮助您的插件更快通过审核。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/publishing/standards/contributor-covenant-code-of-conduct)。 ## 1. 插件价值和独特性 diff --git a/zh/develop-plugin/publishing/standards/privacy-protection-guidelines.mdx b/zh/develop-plugin/publishing/standards/privacy-protection-guidelines.mdx index 7319ff550..c4eaa22f4 100644 --- a/zh/develop-plugin/publishing/standards/privacy-protection-guidelines.mdx +++ b/zh/develop-plugin/publishing/standards/privacy-protection-guidelines.mdx @@ -10,7 +10,7 @@ title: 插件隐私政策指南 description: 本文档描述了开发者在向 Dify Marketplace 提交插件时如何编写隐私政策的指南。包括如何识别和列出收集的个人数据类型(直接识别信息、间接识别信息、组合信息)、如何填写插件隐私政策、如何在 Manifest 文件中包含隐私政策声明,以及相关常见问题的解答。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/publishing/standards/privacy-protection-guidelines)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/publishing/standards/privacy-protection-guidelines)。 当你向 Dify Marketplace 提交插件时,你需要透明地说明如何处理用户数据。以下指南重点介绍如何处理插件的隐私相关问题和用户数据处理。 diff --git a/zh/develop-plugin/publishing/standards/third-party-signature-verification.mdx b/zh/develop-plugin/publishing/standards/third-party-signature-verification.mdx index 07980637f..c3fab0896 100644 --- a/zh/develop-plugin/publishing/standards/third-party-signature-verification.mdx +++ b/zh/develop-plugin/publishing/standards/third-party-signature-verification.mdx @@ -10,7 +10,7 @@ title: 为第三方签名验证签署插件 description: 本文档介绍如何在 Dify 社区版中启用和使用第三方签名验证功能,包括密钥对生成、插件签名和验证,以及环境配置步骤,使管理员能够安全地安装 Dify Marketplace 上没有的插件。 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/develop-plugin/publishing/standards/third-party-signature-verification)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/develop-plugin/publishing/standards/third-party-signature-verification)。 --- title: diff --git a/zh/self-host/advanced-deployments/local-source-code.mdx b/zh/self-host/advanced-deployments/local-source-code.mdx index 2af6fd9c1..bf06c5a89 100644 --- a/zh/self-host/advanced-deployments/local-source-code.mdx +++ b/zh/self-host/advanced-deployments/local-source-code.mdx @@ -2,7 +2,7 @@ title: 使用源代码本地启动 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/advanced-deployments/local-source-code)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/advanced-deployments/local-source-code)。 ## 前提条件 diff --git a/zh/self-host/advanced-deployments/start-the-frontend-docker-container.mdx b/zh/self-host/advanced-deployments/start-the-frontend-docker-container.mdx index 4b0313b17..69ec7bac3 100644 --- a/zh/self-host/advanced-deployments/start-the-frontend-docker-container.mdx +++ b/zh/self-host/advanced-deployments/start-the-frontend-docker-container.mdx @@ -2,7 +2,7 @@ title: 单独启动前端 Docker 容器 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/advanced-deployments/start-the-frontend-docker-container)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/advanced-deployments/start-the-frontend-docker-container)。 在单独开发后端时,你可能只需要从源代码启动后端服务,而无需在本地构建和启动前端。在这种情况下,你可以通过拉取 Docker 镜像并运行容器来直接启动前端服务。以下是具体步骤: diff --git a/zh/self-host/platform-guides/bt-panel.mdx b/zh/self-host/platform-guides/bt-panel.mdx index 4c2c2aa8b..09d8dad7b 100644 --- a/zh/self-host/platform-guides/bt-panel.mdx +++ b/zh/self-host/platform-guides/bt-panel.mdx @@ -2,7 +2,7 @@ title: 使用 aaPanel 部署 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/platform-guides/bt-panel)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/platform-guides/bt-panel)。 ## 前提条件 diff --git a/zh/self-host/platform-guides/dify-premium.mdx b/zh/self-host/platform-guides/dify-premium.mdx index 4170264c9..ead0d1a35 100644 --- a/zh/self-host/platform-guides/dify-premium.mdx +++ b/zh/self-host/platform-guides/dify-premium.mdx @@ -2,7 +2,7 @@ title: AWS 上的 Dify Premium --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/platform-guides/dify-premium)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/platform-guides/dify-premium)。 Dify Premium 是我们的 AWS AMI 产品,支持自定义品牌,可一键部署到你的 AWS VPC 作为 EC2 实例。前往 [AWS Marketplace](https://aws.amazon.com/marketplace/pp/prodview-t22mebxzwjhu6) 进行订阅。它在以下几种场景中很有用: diff --git a/zh/self-host/quick-start/docker-compose.mdx b/zh/self-host/quick-start/docker-compose.mdx index 490a9c0c4..39cd48f40 100644 --- a/zh/self-host/quick-start/docker-compose.mdx +++ b/zh/self-host/quick-start/docker-compose.mdx @@ -3,7 +3,7 @@ title: 使用 Docker Compose 部署 Dify sidebarTitle: Docker Compose --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/quick-start/docker-compose)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/quick-start/docker-compose)。 如需了解常见部署问题,请参阅[常见问题解答](/zh/self-host/quick-start/faqs)。 @@ -27,7 +27,7 @@ sidebarTitle: Docker Compose | 启用了 WSL 2 的 Windows | Docker Desktop | 建议将源代码和绑定到 Linux 容器的数据存储在 Linux 文件系统中,而不是 Windows 文件系统中。



安装说明请参阅 [Windows 版 Docker Desktop 安装指南](https://docs.docker.com/desktop/windows/install/#wsl-2-backend)。 | -## 部署并启动 Dify +## 部署并启动 @@ -120,7 +120,7 @@ sidebarTitle: Docker Compose -## 访问 Dify +## 访问 1. 打开管理员初始化页面以设置管理员账户: @@ -142,7 +142,7 @@ sidebarTitle: Docker Compose http://your_server_ip ``` -## 自定义 Dify +## 自定义 修改本地 `.env` 文件中的环境变量值,然后重启 Dify 以应用更改: @@ -155,7 +155,7 @@ docker compose up -d 更多信息请参阅[环境变量](/zh/self-host/configuration/environments)。
-## 升级 Dify +## 升级 不同版本的升级步骤可能有所不同。请参阅 [Releases](https://github.com/langgenius/dify/releases) 页面中提供的目标版本升级指南。 diff --git a/zh/self-host/quick-start/faqs.mdx b/zh/self-host/quick-start/faqs.mdx index 1311e36e9..82c58cec6 100644 --- a/zh/self-host/quick-start/faqs.mdx +++ b/zh/self-host/quick-start/faqs.mdx @@ -2,7 +2,7 @@ title: 常见问题 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/quick-start/faqs)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/quick-start/faqs)。 ## 部署方法 diff --git a/zh/self-host/troubleshooting/common-issues.mdx b/zh/self-host/troubleshooting/common-issues.mdx index 6da7b47d3..71fabc5e4 100644 --- a/zh/self-host/troubleshooting/common-issues.mdx +++ b/zh/self-host/troubleshooting/common-issues.mdx @@ -2,7 +2,7 @@ title: 常见问题 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/troubleshooting/common-issues)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/troubleshooting/common-issues)。 ## 身份验证与访问 diff --git a/zh/self-host/troubleshooting/docker-issues.mdx b/zh/self-host/troubleshooting/docker-issues.mdx index 5d6915e6d..0b84c95af 100644 --- a/zh/self-host/troubleshooting/docker-issues.mdx +++ b/zh/self-host/troubleshooting/docker-issues.mdx @@ -2,7 +2,7 @@ title: Docker 问题 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/troubleshooting/docker-issues)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/troubleshooting/docker-issues)。 ## 网络与连接 diff --git a/zh/self-host/troubleshooting/integrations.mdx b/zh/self-host/troubleshooting/integrations.mdx index 71e12d43e..4a1fe9bd4 100644 --- a/zh/self-host/troubleshooting/integrations.mdx +++ b/zh/self-host/troubleshooting/integrations.mdx @@ -2,7 +2,7 @@ title: 第三方集成 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/troubleshooting/integrations)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/troubleshooting/integrations)。 ## Notion 集成 diff --git a/zh/self-host/troubleshooting/storage-and-migration.mdx b/zh/self-host/troubleshooting/storage-and-migration.mdx index 9505a7548..449062caa 100644 --- a/zh/self-host/troubleshooting/storage-and-migration.mdx +++ b/zh/self-host/troubleshooting/storage-and-migration.mdx @@ -2,7 +2,7 @@ title: 存储与迁移 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/troubleshooting/storage-and-migration)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/troubleshooting/storage-and-migration)。 ## 向量数据库迁移 diff --git a/zh/self-host/troubleshooting/weaviate-v4-migration.mdx b/zh/self-host/troubleshooting/weaviate-v4-migration.mdx index 6534d9cb5..74ccbd07f 100644 --- a/zh/self-host/troubleshooting/weaviate-v4-migration.mdx +++ b/zh/self-host/troubleshooting/weaviate-v4-migration.mdx @@ -2,7 +2,7 @@ title: Weaviate 迁移指南:升级到客户端 v4 和服务器 1.27+ --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/self-host/troubleshooting/weaviate-v4-migration)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/self-host/troubleshooting/weaviate-v4-migration)。 > 本指南说明如何从 Weaviate 客户端 v3 迁移到 v4.17.0,并将 Weaviate 服务器从 1.19.0 版本升级到 1.27.0 或更高版本。此迁移适用于包含 weaviate-client v4 升级的 Dify 版本。 diff --git a/zh/use-dify/knowledge/create-knowledge/import-text-data/readme.mdx b/zh/use-dify/knowledge/create-knowledge/import-text-data/readme.mdx index b83cb4e32..05cc74f91 100644 --- a/zh/use-dify/knowledge/create-knowledge/import-text-data/readme.mdx +++ b/zh/use-dify/knowledge/create-knowledge/import-text-data/readme.mdx @@ -2,7 +2,7 @@ title: 上传本地文件 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/create-knowledge/import-text-data/readme)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/create-knowledge/import-text-data/readme)。 知识库创建后,其数据源无法更改。 diff --git a/zh/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion.mdx b/zh/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion.mdx index 420d26a5a..361a79af8 100644 --- a/zh/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion.mdx +++ b/zh/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion.mdx @@ -2,7 +2,7 @@ title: 从 Notion 导入数据 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/create-knowledge/import-text-data/sync-from-notion)。 Dify 知识库支持从 Notion 导入,并支持后续的数据自动同步。 diff --git a/zh/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website.mdx b/zh/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website.mdx index 322bb37e0..dc02c1dd7 100644 --- a/zh/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website.mdx +++ b/zh/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website.mdx @@ -2,7 +2,7 @@ title: 从网页导入数据 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/create-knowledge/import-text-data/sync-from-website)。 知识库支持通过第三方工具如 [Jina Reader](https://jina.ai/reader), [Firecrawl ](https://www.firecrawl.dev/)抓取公开网页中的内容,解析为 Markdown 内容并导入至知识库。 diff --git a/zh/use-dify/knowledge/create-knowledge/introduction.mdx b/zh/use-dify/knowledge/create-knowledge/introduction.mdx index a88fe2074..7a4bc1e19 100644 --- a/zh/use-dify/knowledge/create-knowledge/introduction.mdx +++ b/zh/use-dify/knowledge/create-knowledge/introduction.mdx @@ -3,7 +3,7 @@ title: 快速创建知识库 sidebarTitle: 概述 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/create-knowledge/introduction)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/create-knowledge/introduction)。 快速创建并配置知识库的步骤如下: diff --git a/zh/use-dify/knowledge/knowledge-pipeline/authorize-data-source.mdx b/zh/use-dify/knowledge/knowledge-pipeline/authorize-data-source.mdx index 094f205df..9805d9219 100644 --- a/zh/use-dify/knowledge/knowledge-pipeline/authorize-data-source.mdx +++ b/zh/use-dify/knowledge/knowledge-pipeline/authorize-data-source.mdx @@ -2,7 +2,7 @@ title: 数据源授权 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/knowledge-pipeline/authorize-data-source)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/knowledge-pipeline/authorize-data-source)。 Dify 支持多种外部数据源的连接,为了确保数据安全和访问控制,不同的数据源需要进行相应的授权配置。根据数据源的特性,Dify 提供两种主要的授权方式:**API Key** 和 **OAuth**,以确保你能够安全地访问和导入所需的数据。 diff --git a/zh/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline.mdx b/zh/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline.mdx index b940c4384..f2a14b09e 100644 --- a/zh/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline.mdx +++ b/zh/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline.mdx @@ -2,7 +2,7 @@ title: "步骤一:创建知识流水线" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/knowledge-pipeline/create-knowledge-pipeline)。 ![创建知识流水线](/images/use-dify/knowledge/create-knowledge-pipeline-01.png) diff --git a/zh/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration.mdx b/zh/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration.mdx index 9cddcf49d..771bffcbd 100644 --- a/zh/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration.mdx +++ b/zh/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration.mdx @@ -2,7 +2,7 @@ title: "步骤二:编排知识流水线" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/knowledge-pipeline/knowledge-pipeline-orchestration)。 想象一下你正在搭建一条生产流水线,每个站点执行特定任务,你将不同它们连接起来将每个零部件组装最终成品。知识流水线编排与此类似,你组合不同节点,将原始文档数据通过每个节点逐步转化为可搜索的知识库。在 Dify 里,你通过可视化的方式,拖放和连接不同节点,对文档数据进行提取和分块处理,并配置索引方式和检索策略。 diff --git a/zh/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base.mdx b/zh/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base.mdx index c74cb64b2..4b0d6095a 100644 --- a/zh/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base.mdx +++ b/zh/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base.mdx @@ -2,7 +2,7 @@ title: "步骤五:管理和使用知识库" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/knowledge-pipeline/manage-knowledge-base)。 创建知识库后,你可以继续对其进行管理和优化,以确保它能为你的应用程序提供准确的的上下文信息。通过以下方式,你可以对知识库文件的进行更新、进行召回测试、修改流水线和修改知识库的属性等: diff --git a/zh/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline.mdx b/zh/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline.mdx index 5a59bf98c..a1cd35f2b 100644 --- a/zh/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline.mdx +++ b/zh/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline.mdx @@ -2,7 +2,7 @@ title: "步骤三:发布知识流水线" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/knowledge-pipeline/publish-knowledge-pipeline)。 完成知识流水线的编排和调试后,点击**发布**并在弹窗中点击**确认**,即成功发布知识流水线。 diff --git a/zh/use-dify/knowledge/knowledge-pipeline/readme.mdx b/zh/use-dify/knowledge/knowledge-pipeline/readme.mdx index 70da327d3..236b50366 100644 --- a/zh/use-dify/knowledge/knowledge-pipeline/readme.mdx +++ b/zh/use-dify/knowledge/knowledge-pipeline/readme.mdx @@ -3,7 +3,7 @@ title: 通过知识流水线创建知识库 sidebarTitle: 概述 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/knowledge-pipeline/readme)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/knowledge-pipeline/readme)。 知识流水线是构建处理文档流程的一种解决方案,你能够像编排工作流一样对不同节点进行可视化地组合和配置,并选择使用不同工具来优化数据处理过程。 diff --git a/zh/use-dify/knowledge/knowledge-pipeline/upload-files.mdx b/zh/use-dify/knowledge/knowledge-pipeline/upload-files.mdx index 7f70fafe2..36e35b8b0 100644 --- a/zh/use-dify/knowledge/knowledge-pipeline/upload-files.mdx +++ b/zh/use-dify/knowledge/knowledge-pipeline/upload-files.mdx @@ -2,7 +2,7 @@ title: "步骤四:上传文件" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/knowledge/knowledge-pipeline/upload-files)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/knowledge/knowledge-pipeline/upload-files)。 完成知识流水线的编排、调试并发布成功后,你能通过以下两种方式上传文件: diff --git a/zh/use-dify/monitor/integrations/integrate-langfuse.mdx b/zh/use-dify/monitor/integrations/integrate-langfuse.mdx index 271d65401..1fd59e16d 100644 --- a/zh/use-dify/monitor/integrations/integrate-langfuse.mdx +++ b/zh/use-dify/monitor/integrations/integrate-langfuse.mdx @@ -2,7 +2,7 @@ title: 集成 Langfuse --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/monitor/integrations/integrate-langfuse)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/monitor/integrations/integrate-langfuse)。 ### 什么是 Langfuse diff --git a/zh/use-dify/nodes/trigger/overview.mdx b/zh/use-dify/nodes/trigger/overview.mdx index e606b70d9..52a6deabd 100644 --- a/zh/use-dify/nodes/trigger/overview.mdx +++ b/zh/use-dify/nodes/trigger/overview.mdx @@ -3,7 +3,7 @@ title: 触发器 sidebarTitle: "概述" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/nodes/trigger/overview)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/nodes/trigger/overview)。 ## 简介 diff --git a/zh/use-dify/nodes/trigger/plugin-trigger.mdx b/zh/use-dify/nodes/trigger/plugin-trigger.mdx index 68bf71e09..844ccd9a1 100644 --- a/zh/use-dify/nodes/trigger/plugin-trigger.mdx +++ b/zh/use-dify/nodes/trigger/plugin-trigger.mdx @@ -2,7 +2,7 @@ title: 插件触发器 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/nodes/trigger/plugin-trigger)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/nodes/trigger/plugin-trigger)。 ## 简介 diff --git a/zh/use-dify/nodes/trigger/schedule-trigger.mdx b/zh/use-dify/nodes/trigger/schedule-trigger.mdx index f5940f171..ba255bac3 100644 --- a/zh/use-dify/nodes/trigger/schedule-trigger.mdx +++ b/zh/use-dify/nodes/trigger/schedule-trigger.mdx @@ -2,7 +2,7 @@ title: 定时触发器 --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/nodes/trigger/schedule-trigger)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/nodes/trigger/schedule-trigger)。 ## 简介 diff --git a/zh/use-dify/publish/webapp/chatflow-webapp.mdx b/zh/use-dify/publish/webapp/chatflow-webapp.mdx index 8b0c4b233..31ac17200 100644 --- a/zh/use-dify/publish/webapp/chatflow-webapp.mdx +++ b/zh/use-dify/publish/webapp/chatflow-webapp.mdx @@ -2,7 +2,7 @@ title: "聊天 Web App " --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/publish/webapp/chatflow-webapp)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/publish/webapp/chatflow-webapp)。 聊天 Web App 将你的对话流转变为完整的对话体验。用户可获得持续的聊天会话、智能交互以及你配置的所有功能——无需安装任何软件。 diff --git a/zh/use-dify/publish/webapp/web-app-access.mdx b/zh/use-dify/publish/webapp/web-app-access.mdx index 282cfdd3d..3d4063b94 100644 --- a/zh/use-dify/publish/webapp/web-app-access.mdx +++ b/zh/use-dify/publish/webapp/web-app-access.mdx @@ -3,7 +3,7 @@ title: 访问控制 tag: "ENTERPRISE" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/publish/webapp/web-app-access)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/publish/webapp/web-app-access)。 Web 应用访问控制决定了谁可以使用你发布的应用程序。默认情况下,新应用仅限特定团队成员访问——你可以精确选择谁有权限访问。 diff --git a/zh/use-dify/publish/webapp/web-app-settings.mdx b/zh/use-dify/publish/webapp/web-app-settings.mdx index e85c4f034..905591b91 100644 --- a/zh/use-dify/publish/webapp/web-app-settings.mdx +++ b/zh/use-dify/publish/webapp/web-app-settings.mdx @@ -2,7 +2,7 @@ title: "Web App 设置" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/publish/webapp/web-app-settings)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/publish/webapp/web-app-settings)。 Web App 设置控制你发布的应用程序对最终用户的外观和行为。每个 Dify 应用程序都会自动生成一个适应不同设备和屏幕尺寸的 Web 界面。 diff --git a/zh/use-dify/publish/webapp/workflow-webapp.mdx b/zh/use-dify/publish/webapp/workflow-webapp.mdx index dd2d121c5..54110d3bb 100644 --- a/zh/use-dify/publish/webapp/workflow-webapp.mdx +++ b/zh/use-dify/publish/webapp/workflow-webapp.mdx @@ -2,7 +2,7 @@ title: "工作流 Web App" --- - ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考[英文原版](/en/use-dify/publish/webapp/workflow-webapp)。 + ⚠️ 本文档由 AI 自动翻译。如有任何不准确之处,请参考 [英文原版](/en/use-dify/publish/webapp/workflow-webapp)。 工作流 Web App 将你的 Dify 工作流转换为生产就绪的应用程序,可以处理从单次运行到大规模批处理操作的各种任务。用户可以获得清晰的输入界面、实时处理反馈和全面的结果管理功能。 diff --git a/zh/use-dify/workspace/readme.mdx b/zh/use-dify/workspace/readme.mdx index fb8362359..970effb1c 100644 --- a/zh/use-dify/workspace/readme.mdx +++ b/zh/use-dify/workspace/readme.mdx @@ -47,7 +47,6 @@ Dify 中的每个资源都属于一个工作空间。当你创建应用时,它 - **管理员** 管理团队成员并配置模型/插件 - **编辑者** 构建应用程序并管理知识库 - **成员** 使用已发布的应用程序 -- **数据集操作员** 专注于知识库管理 ## 工作空间导航 diff --git a/zh/use-dify/workspace/team-members-management.mdx b/zh/use-dify/workspace/team-members-management.mdx index 221c93390..b773ebd76 100644 --- a/zh/use-dify/workspace/team-members-management.mdx +++ b/zh/use-dify/workspace/team-members-management.mdx @@ -14,7 +14,7 @@ Dify 中的团队管理以工作空间为中心。当你将成员添加到工作 - **免费版**: 1 个成员(单人开发) - **专业版**: 3 个成员(小团队) -- **团队版**: 无限制成员(成长型企业) +- **团队版**: 50 个成员(成长型企业) - **社区版/企业版**: 无限制成员(私有部署) ## 工作空间角色 @@ -35,10 +35,6 @@ Dify 中的团队管理以工作空间为中心。当你将成员添加到工作 **仅使用应用程序。** 可以使用已发布的应用程序和有权访问的工具。无法创建或修改应用程序。 - - - **知识库专家。** 专注于管理数据集和知识库的角色。可以创建和管理知识库,但应用程序访问权限有限。 - ## 添加团队成员 From 2d18542c3297f229d0d7baa8b0057d52517a3317 Mon Sep 17 00:00:00 2001 From: RiskeyL <7a8y@163.com> Date: Wed, 29 Apr 2026 21:42:40 +0800 Subject: [PATCH 3/3] fix: drop format uuid from chatflow workflow paused event --- en/api-reference/openapi_chatflow.json | 1 - ja/api-reference/openapi_chatflow.json | 1 - zh/api-reference/openapi_chatflow.json | 1 - 3 files changed, 3 deletions(-) diff --git a/en/api-reference/openapi_chatflow.json b/en/api-reference/openapi_chatflow.json index a93aeb296..6c1e08125 100644 --- a/en/api-reference/openapi_chatflow.json +++ b/en/api-reference/openapi_chatflow.json @@ -6027,7 +6027,6 @@ "properties": { "workflow_run_id": { "type": "string", - "format": "uuid", "description": "Persistent identifier for this workflow run record. Use this with [Get Workflow Run Detail](/api-reference/chatflows/get-workflow-run-detail) to retrieve results after execution." }, "paused_nodes": { diff --git a/ja/api-reference/openapi_chatflow.json b/ja/api-reference/openapi_chatflow.json index 50fd020ee..e43000e67 100644 --- a/ja/api-reference/openapi_chatflow.json +++ b/ja/api-reference/openapi_chatflow.json @@ -6027,7 +6027,6 @@ "properties": { "workflow_run_id": { "type": "string", - "format": "uuid", "description": "このワークフロー実行記録の永続的な識別子です。[ワークフロー実行詳細を取得](/api-reference/チャットフロー/ワークフロー実行詳細を取得) と組み合わせて、実行後に結果を取得します。" }, "paused_nodes": { diff --git a/zh/api-reference/openapi_chatflow.json b/zh/api-reference/openapi_chatflow.json index 69acb3994..b815a39ee 100644 --- a/zh/api-reference/openapi_chatflow.json +++ b/zh/api-reference/openapi_chatflow.json @@ -6027,7 +6027,6 @@ "properties": { "workflow_run_id": { "type": "string", - "format": "uuid", "description": "此工作流运行记录的持久化标识符。配合 [获取工作流运行详情](/api-reference/对话流/获取工作流执行情况) 使用以在执行后获取结果。" }, "paused_nodes": {