diff --git a/web/features/agent-v2/agent-detail/configure/components/orchestrate/common/tip-content.tsx b/web/features/agent-v2/agent-detail/configure/components/orchestrate/common/tip-content.tsx new file mode 100644 index 00000000000..944da5f65e2 --- /dev/null +++ b/web/features/agent-v2/agent-detail/configure/components/orchestrate/common/tip-content.tsx @@ -0,0 +1,62 @@ +'use client' + +import type { ReactNode } from 'react' +import { Trans, useTranslation } from 'react-i18next' +import { useDocLink } from '@/context/i18n' + +type AgentConfigureTipContentProps = { + type: 'prompt' | 'skills' | 'files' | 'tools' +} + +function DocsLink({ + children, + href, +}: { + children?: ReactNode + href: string +}) { + return ( + + {children} + + ) +} + +export function AgentConfigureTipContent({ type }: AgentConfigureTipContentProps) { + const { t } = useTranslation('agentV2') + const docLink = useDocLink() + + if (type === 'skills') { + return ( + , + }} + /> + ) + } + + if (type === 'tools') { + return ( + + , + buildDocLink: , + }} + /> + + ) + } + + return <>{t(`agentDetail.configure.${type}.tip`)} +} diff --git a/web/features/agent-v2/agent-detail/configure/components/orchestrate/files/index.tsx b/web/features/agent-v2/agent-detail/configure/components/orchestrate/files/index.tsx index da8ff756469..31418acb557 100644 --- a/web/features/agent-v2/agent-detail/configure/components/orchestrate/files/index.tsx +++ b/web/features/agent-v2/agent-detail/configure/components/orchestrate/files/index.tsx @@ -19,6 +19,7 @@ import { useRegisterAgentOrchestrateAddAction } from '../add-actions-context' import { ConfigureSectionAddButton } from '../common/add-button' import { ConfigureSectionEmpty } from '../common/empty' import { ConfigureSection } from '../common/section' +import { AgentConfigureTipContent } from '../common/tip-content' import { FILES_DRIVE_PREFIX, useAgentDriveApiContext, useAgentDriveFiles } from '../drive-context' import { useAgentOrchestrateReadOnly } from '../read-only-context' import { AgentSkillDetailDialog } from '../skills/detail-dialog' @@ -249,7 +250,7 @@ export function AgentFiles() { } tipAriaLabel={filesTip} rootClassName="border-b border-divider-subtle pt-4" panelContentClassName="pb-4" diff --git a/web/features/agent-v2/agent-detail/configure/components/orchestrate/prompt-editor/index.tsx b/web/features/agent-v2/agent-detail/configure/components/orchestrate/prompt-editor/index.tsx index 2c4e87d3e45..d7e190f780c 100644 --- a/web/features/agent-v2/agent-detail/configure/components/orchestrate/prompt-editor/index.tsx +++ b/web/features/agent-v2/agent-detail/configure/components/orchestrate/prompt-editor/index.tsx @@ -23,6 +23,7 @@ import { ENABLE_AGENT_CLI_TOOLS } from '@/features/agent-v2/agent-detail/configu import useTheme from '@/hooks/use-theme' import { Theme } from '@/types/app' import { useAgentOrchestrateAddActions } from '../add-actions-context' +import { AgentConfigureTipContent } from '../common/tip-content' import { useAgentDriveFiles, useAgentDriveSkills } from '../drive-context' import { useAgentOrchestrateReadOnly } from '../read-only-context' import { replaceTrailingSlashWithToken } from './options' @@ -324,7 +325,7 @@ export function AgentPromptEditor() { {t('agentDetail.configure.prompt.label')} - {promptTip} + diff --git a/web/features/agent-v2/agent-detail/configure/components/orchestrate/skills/index.tsx b/web/features/agent-v2/agent-detail/configure/components/orchestrate/skills/index.tsx index 0d4e49eda33..5715699ac44 100644 --- a/web/features/agent-v2/agent-detail/configure/components/orchestrate/skills/index.tsx +++ b/web/features/agent-v2/agent-detail/configure/components/orchestrate/skills/index.tsx @@ -10,6 +10,7 @@ import { useRegisterAgentOrchestrateAddAction } from '../add-actions-context' import { ConfigureSectionAddButton } from '../common/add-button' import { ConfigureSectionEmpty } from '../common/empty' import { ConfigureSection } from '../common/section' +import { AgentConfigureTipContent } from '../common/tip-content' import { useAgentDriveApiContext, useAgentDriveSkills } from '../drive-context' import { AgentSkillItem } from './item' import { AgentSkillUploadDialog } from './upload-dialog' @@ -79,7 +80,7 @@ export function AgentSkills() { label={t('agentDetail.configure.skills.label')} labelId="agent-configure-skills-label" panelId={skillsListId} - tip={skillsTip} + tip={} tipAriaLabel={skillsTip} rootClassName="border-b border-divider-subtle pt-4" panelContentClassName="flex flex-col gap-1 pb-4" diff --git a/web/features/agent-v2/agent-detail/configure/components/orchestrate/tools/index.tsx b/web/features/agent-v2/agent-detail/configure/components/orchestrate/tools/index.tsx index b9080a0cdc6..61dfcc1b9f9 100644 --- a/web/features/agent-v2/agent-detail/configure/components/orchestrate/tools/index.tsx +++ b/web/features/agent-v2/agent-detail/configure/components/orchestrate/tools/index.tsx @@ -23,6 +23,7 @@ import { useRegisterAgentOrchestrateAddAction } from '../add-actions-context' import { ConfigureSectionAddButton } from '../common/add-button' import { ConfigureSectionEmpty } from '../common/empty' import { ConfigureSection } from '../common/section' +import { AgentConfigureTipContent } from '../common/tip-content' import { useAgentOrchestrateReadOnly } from '../read-only-context' import { CliToolDialog } from './cli-tool/dialog' import { AgentCliToolItem } from './cli-tool/item' @@ -428,7 +429,7 @@ export function AgentTools() { label={t('agentDetail.configure.tools.label')} labelId="agent-configure-tools-label" panelId={toolsListId} - tip={toolsTip} + tip={} tipAriaLabel={toolsTip} rootClassName="border-b border-divider-subtle pt-4" panelContentClassName="flex flex-col gap-1 pb-4" diff --git a/web/features/agent-v2/agent-detail/configure/components/preview/build-background.tsx b/web/features/agent-v2/agent-detail/configure/components/preview/build-background.tsx new file mode 100644 index 00000000000..3462de15482 --- /dev/null +++ b/web/features/agent-v2/agent-detail/configure/components/preview/build-background.tsx @@ -0,0 +1,25 @@ +import { cn } from '@langgenius/dify-ui/cn' +import buildHeaderBackground from './build-header-background.svg' + +export function AgentBuildHeaderBackground({ + visible, +}: { + visible: boolean +}) { + return ( +
+ +
+ ) +} diff --git a/web/features/agent-v2/agent-detail/configure/components/preview/build-header-background.svg b/web/features/agent-v2/agent-detail/configure/components/preview/build-header-background.svg new file mode 100644 index 00000000000..b7c9fc708fd --- /dev/null +++ b/web/features/agent-v2/agent-detail/configure/components/preview/build-header-background.svg @@ -0,0 +1,1412 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/features/agent-v2/agent-detail/configure/components/preview/header.tsx b/web/features/agent-v2/agent-detail/configure/components/preview/header.tsx index 4c42afe35f2..1c5ce5017d1 100644 --- a/web/features/agent-v2/agent-detail/configure/components/preview/header.tsx +++ b/web/features/agent-v2/agent-detail/configure/components/preview/header.tsx @@ -26,7 +26,7 @@ export function AgentPreviewHeader({ const { t } = useTranslation('agentV2') return ( -
+
value={[mode]} diff --git a/web/features/agent-v2/agent-detail/configure/page.tsx b/web/features/agent-v2/agent-detail/configure/page.tsx index 13c01cb400a..0c533211c68 100644 --- a/web/features/agent-v2/agent-detail/configure/page.tsx +++ b/web/features/agent-v2/agent-detail/configure/page.tsx @@ -9,6 +9,7 @@ import { AgentComposerProvider } from '@/features/agent-v2/agent-composer/provid import { useHydrateAgentSoulConfigDraft } from '@/features/agent-v2/agent-composer/store' import { consoleQuery } from '@/service/client' import { AgentOrchestratePanel } from './components/orchestrate' +import { AgentBuildHeaderBackground } from './components/preview/build-background' import { AgentBuildChat } from './components/preview/build-chat' import { AgentChatFeaturesPanel } from './components/preview/chat-features-panel' import { AgentPreviewHeader } from './components/preview/header' @@ -198,7 +199,8 @@ function AgentConfigurePageLoadedContent({ {/* Preview area */}
-
+
+ -
+
الوثائق. أشر إليها صراحةً باستخدام / في البرومبت.", + "agentDetail.configure.skills.tip": "زوّد وكيلك بقدرات معيارية. راجع الوثائق. أشر إليها صراحةً باستخدام / في البرومبت.", "agentDetail.configure.skills.toggle": "تبديل المهارات", "agentDetail.configure.skills.upload.action": "تحميل", "agentDetail.configure.skills.upload.browse": "استعراض", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "تفويض مسبق", "agentDetail.configure.tools.removeAction": "إزالة {{name}}", "agentDetail.configure.tools.removeProvider": "إزالة جميع الأدوات", - "agentDetail.configure.tools.tip": "الأدوات التي يمكن لهذا الوكيل استدعاؤها أثناء تنسيق المهام.", + "agentDetail.configure.tools.richTip": "زوّد وكيلك بإضافات Dify. راجع الوثائق. أشر إليها صراحةً باستخدام / في البرومبت.\nبدلاً من ذلك، يمكنك دائماً إخبار الوكيل بتثبيت أدوات أخرى والمصادقة عليها (مثل MCPs وأدوات CLI) عبر دردشة Build. لاحظ أن الأدوات التي يتم تكوينها عبر دردشات Build لن تظهر هنا، لكنها ستظل متاحة لوكيلك لاحقاً. راجع الوثائق.", + "agentDetail.configure.tools.tip": "زوّد وكيلك بإضافات Dify. راجع الوثائق. أشر إليها صراحةً باستخدام / في البرومبت. بدلاً من ذلك، يمكنك دائماً إخبار الوكيل بتثبيت أدوات أخرى والمصادقة عليها (مثل MCPs وأدوات CLI) عبر دردشة Build. لاحظ أن الأدوات التي يتم تكوينها عبر دردشات Build لن تظهر هنا، لكنها ستظل متاحة لوكيلك لاحقاً. راجع الوثائق.", "agentDetail.configure.tools.toggle": "تبديل الأدوات", "agentDetail.configure.tools.toolTabs.all": "الكل", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/de-DE/agent-v-2.json b/web/i18n/de-DE/agent-v-2.json index 91f425005b0..5f1fd69ba21 100644 --- a/web/i18n/de-DE/agent-v-2.json +++ b/web/i18n/de-DE/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Vorschau konnte nicht geladen werden.", "agentDetail.configure.files.preview.unsupported": "Für diese Datei wird keine Vorschau unterstützt.", "agentDetail.configure.files.remove": "{{name}} entfernen", - "agentDetail.configure.files.tip": "Dateien, die dieser Agent bei der Orchestrierung von Aufgaben verwenden kann.", + "agentDetail.configure.files.tip": "Stellen Sie Ihrem Agenten Beispiele, Richtlinien oder einfach Informationen bereit, die zu lang für den Prompt sind. Verweisen Sie im Prompt explizit mit / darauf.", "agentDetail.configure.files.toggle": "Dateien umschalten", "agentDetail.configure.files.treeLabel": "Agentendateien", "agentDetail.configure.files.upload.action": "Hochladen", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Erwähnen", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Anweisungen hier eintragen,", - "agentDetail.configure.prompt.tip": "Definieren Sie, wie dieser Agent Eingaben interpretiert, Tools aufruft und Ausgaben erzeugt.", + "agentDetail.configure.prompt.tip": "Definieren Sie die Rolle des Agenten und beschreiben Sie seine typische Aufgabe. Verwenden Sie /, um explizit auf Skills, Dateien, Tools und Wissensabrufe zu verweisen.", "agentDetail.configure.publishBar.draft": "Entwurf", "agentDetail.configure.publishBar.publishUpdate": "Update veröffentlichen", "agentDetail.configure.publishBar.published": "Veröffentlicht", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Skill", "agentDetail.configure.skills.label": "Skills", "agentDetail.configure.skills.remove": "{{name}} entfernen", - "agentDetail.configure.skills.tip": "Skills, die dieser Agent bei der Orchestrierung von Aufgaben verwenden kann.", + "agentDetail.configure.skills.richTip": "Statten Sie Ihren Agenten mit modularen Fähigkeiten aus. Siehe Dokumentation. Verweisen Sie im Prompt explizit mit / darauf.", + "agentDetail.configure.skills.tip": "Statten Sie Ihren Agenten mit modularen Fähigkeiten aus. Siehe Dokumentation. Verweisen Sie im Prompt explizit mit / darauf.", "agentDetail.configure.skills.toggle": "Skills umschalten", "agentDetail.configure.skills.upload.action": "Hochladen", "agentDetail.configure.skills.upload.browse": "durchsuchen", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Vorab autorisieren", "agentDetail.configure.tools.removeAction": "{{name}} entfernen", "agentDetail.configure.tools.removeProvider": "Alle Tools entfernen", - "agentDetail.configure.tools.tip": "Tools, die dieser Agent bei der Orchestrierung von Aufgaben aufrufen kann.", + "agentDetail.configure.tools.richTip": "Statten Sie Ihren Agenten mit Dify-Plugins aus. Siehe Dokumentation. Verweisen Sie im Prompt explizit mit / darauf.\nAlternativ können Sie den Agenten jederzeit über einen Build-Chat anweisen, andere Tools (z. B. MCPs und CLI-Tools) zu installieren und zu authentifizieren. Beachten Sie, dass über Build-Chats konfigurierte Tools hier NICHT angezeigt werden, Ihrem Agenten künftig aber weiterhin zur Verfügung stehen. Siehe Dokumentation.", + "agentDetail.configure.tools.tip": "Statten Sie Ihren Agenten mit Dify-Plugins aus. Siehe Dokumentation. Verweisen Sie im Prompt explizit mit / darauf. Alternativ können Sie den Agenten jederzeit über einen Build-Chat anweisen, andere Tools (z. B. MCPs und CLI-Tools) zu installieren und zu authentifizieren. Beachten Sie, dass über Build-Chats konfigurierte Tools hier NICHT angezeigt werden, Ihrem Agenten künftig aber weiterhin zur Verfügung stehen. Siehe Dokumentation.", "agentDetail.configure.tools.toggle": "Tools umschalten", "agentDetail.configure.tools.toolTabs.all": "Alle", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/en-US/agent-v-2.json b/web/i18n/en-US/agent-v-2.json index 98ea0e51d27..2e4000e925d 100644 --- a/web/i18n/en-US/agent-v-2.json +++ b/web/i18n/en-US/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Failed to load preview.", "agentDetail.configure.files.preview.unsupported": "Preview is not supported for this file.", "agentDetail.configure.files.remove": "Remove {{name}}", - "agentDetail.configure.files.tip": "Files this agent can use while orchestrating tasks.", + "agentDetail.configure.files.tip": "Provide your agent with any example, guideline or simply a bearer of information that is too long for prompt. Make explicit reference with / in Prompt.", "agentDetail.configure.files.toggle": "Toggle files", "agentDetail.configure.files.treeLabel": "Agent files", "agentDetail.configure.files.upload.action": "Upload", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Mention", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Write instructions here,", - "agentDetail.configure.prompt.tip": "Define how this agent should interpret inputs, call tools, and produce outputs.", + "agentDetail.configure.prompt.tip": "Define the agent's role and describe its typical task. Use / to make explicit reference to Skills, Files, Tools and Knowledge Retrievals.", "agentDetail.configure.publishBar.draft": "Draft", "agentDetail.configure.publishBar.publishUpdate": "Publish update", "agentDetail.configure.publishBar.published": "Published", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Skill", "agentDetail.configure.skills.label": "Skills", "agentDetail.configure.skills.remove": "Remove {{name}}", - "agentDetail.configure.skills.tip": "Skills this agent can use while orchestrating tasks.", + "agentDetail.configure.skills.richTip": "Equip your agent with modular capabilities. Refer to docs. Make explicit reference with / in Prompt.", + "agentDetail.configure.skills.tip": "Equip your agent with modular capabilities. Refer to docs. Make explicit reference with / in Prompt.", "agentDetail.configure.skills.toggle": "Toggle skills", "agentDetail.configure.skills.upload.action": "Upload", "agentDetail.configure.skills.upload.browse": "browse", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Pre-authorize", "agentDetail.configure.tools.removeAction": "Remove {{name}}", "agentDetail.configure.tools.removeProvider": "Remove all tools", - "agentDetail.configure.tools.tip": "Tools this agent can call while orchestrating tasks.", + "agentDetail.configure.tools.richTip": "Equip your agent with Dify's plugins. Refer to docs. Make explicit reference with / in Prompt.\nAlternatively, you can always tell the agent to install and authenticate other tools (e.g. MCPs & CLI tools) via a Build chat. Note that tools configured via Build chats will NOT show up here, although they will still be available to your agent going forward. Refer to docs.", + "agentDetail.configure.tools.tip": "Equip your agent with Dify's plugins. Refer to docs. Make explicit reference with / in Prompt. Alternatively, you can always tell the agent to install and authenticate other tools (e.g. MCPs & CLI tools) via a Build chat. Note that tools configured via Build chats will NOT show up here, although they will still be available to your agent going forward. Refer to docs.", "agentDetail.configure.tools.toggle": "Toggle tools", "agentDetail.configure.tools.toolTabs.all": "All", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/es-ES/agent-v-2.json b/web/i18n/es-ES/agent-v-2.json index 157d92d22ab..2fd78197d32 100644 --- a/web/i18n/es-ES/agent-v-2.json +++ b/web/i18n/es-ES/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Error al cargar la vista previa.", "agentDetail.configure.files.preview.unsupported": "Este archivo no admite vista previa.", "agentDetail.configure.files.remove": "Eliminar {{name}}", - "agentDetail.configure.files.tip": "Archivos que este agente puede usar al orquestar tareas.", + "agentDetail.configure.files.tip": "Proporciona a tu agente cualquier ejemplo, guía o simplemente un soporte de información que sea demasiado largo para el prompt. Haz referencia explícita con / en el prompt.", "agentDetail.configure.files.toggle": "Alternar archivos", "agentDetail.configure.files.treeLabel": "Archivos del agente", "agentDetail.configure.files.upload.action": "Subir", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Mencionar", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Escribe las instrucciones aquí,", - "agentDetail.configure.prompt.tip": "Define cómo este agente debe interpretar las entradas, invocar herramientas y producir salidas.", + "agentDetail.configure.prompt.tip": "Define el rol del agente y describe su tarea habitual. Usa / para hacer referencia explícita a habilidades, archivos, herramientas y recuperaciones de conocimiento.", "agentDetail.configure.publishBar.draft": "Borrador", "agentDetail.configure.publishBar.publishUpdate": "Publicar actualización", "agentDetail.configure.publishBar.published": "Publicado", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Habilidad", "agentDetail.configure.skills.label": "Habilidades", "agentDetail.configure.skills.remove": "Eliminar {{name}}", - "agentDetail.configure.skills.tip": "Habilidades que este agente puede usar al orquestar tareas.", + "agentDetail.configure.skills.richTip": "Equipa a tu agente con capacidades modulares. Consulta la documentación. Haz referencia explícita con / en el prompt.", + "agentDetail.configure.skills.tip": "Equipa a tu agente con capacidades modulares. Consulta la documentación. Haz referencia explícita con / en el prompt.", "agentDetail.configure.skills.toggle": "Alternar habilidades", "agentDetail.configure.skills.upload.action": "Subir", "agentDetail.configure.skills.upload.browse": "examinar", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Preautorizar", "agentDetail.configure.tools.removeAction": "Eliminar {{name}}", "agentDetail.configure.tools.removeProvider": "Eliminar todas las herramientas", - "agentDetail.configure.tools.tip": "Herramientas que este agente puede invocar al orquestar tareas.", + "agentDetail.configure.tools.richTip": "Equipa a tu agente con los plugins de Dify. Consulta la documentación. Haz referencia explícita con / en el prompt.\nComo alternativa, siempre puedes indicar al agente que instale y autentique otras herramientas (por ejemplo, MCPs y herramientas CLI) mediante un chat de Build. Ten en cuenta que las herramientas configuradas mediante chats de Build NO aparecerán aquí, aunque seguirán estando disponibles para tu agente en adelante. Consulta la documentación.", + "agentDetail.configure.tools.tip": "Equipa a tu agente con los plugins de Dify. Consulta la documentación. Haz referencia explícita con / en el prompt. Como alternativa, siempre puedes indicar al agente que instale y autentique otras herramientas (por ejemplo, MCPs y herramientas CLI) mediante un chat de Build. Ten en cuenta que las herramientas configuradas mediante chats de Build NO aparecerán aquí, aunque seguirán estando disponibles para tu agente en adelante. Consulta la documentación.", "agentDetail.configure.tools.toggle": "Alternar herramientas", "agentDetail.configure.tools.toolTabs.all": "Todas", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/fa-IR/agent-v-2.json b/web/i18n/fa-IR/agent-v-2.json index 5d85ad5648c..8a711ecff3b 100644 --- a/web/i18n/fa-IR/agent-v-2.json +++ b/web/i18n/fa-IR/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "بارگذاری پیش‌نمایش ناموفق بود.", "agentDetail.configure.files.preview.unsupported": "این فایل از پیش‌نمایش پشتیبانی نمی‌کند.", "agentDetail.configure.files.remove": "حذف {{name}}", - "agentDetail.configure.files.tip": "فایل‌هایی که این عامل هنگام هماهنگی وظایف می‌تواند استفاده کند.", + "agentDetail.configure.files.tip": "هر نمونه، دستورالعمل یا حامل اطلاعاتی را که برای پرامپت بیش از حد طولانی است در اختیار عامل قرار دهید. با / در پرامپت به‌صورت صریح به آن ارجاع دهید.", "agentDetail.configure.files.toggle": "تغییر فایل‌ها", "agentDetail.configure.files.treeLabel": "فایل‌های عامل", "agentDetail.configure.files.upload.action": "بارگذاری", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "اشاره", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "دستورالعمل‌ها را اینجا بنویسید،", - "agentDetail.configure.prompt.tip": "تعریف کنید این عامل چگونه ورودی‌ها را تفسیر کند، ابزارها را فراخوانی کند و خروجی تولید کند.", + "agentDetail.configure.prompt.tip": "نقش عامل را تعریف کنید و وظیفه معمول آن را شرح دهید. برای ارجاع صریح به مهارت‌ها، فایل‌ها، ابزارها و بازیابی‌های دانش از / استفاده کنید.", "agentDetail.configure.publishBar.draft": "پیش‌نویس", "agentDetail.configure.publishBar.publishUpdate": "انتشار به‌روزرسانی", "agentDetail.configure.publishBar.published": "منتشر شد", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "مهارت", "agentDetail.configure.skills.label": "مهارت‌ها", "agentDetail.configure.skills.remove": "حذف {{name}}", - "agentDetail.configure.skills.tip": "مهارت‌هایی که این عامل هنگام هماهنگی وظایف می‌تواند استفاده کند.", + "agentDetail.configure.skills.richTip": "عامل خود را به قابلیت‌های ماژولار مجهز کنید. به مستندات مراجعه کنید. با / در پرامپت به‌صورت صریح ارجاع دهید.", + "agentDetail.configure.skills.tip": "عامل خود را به قابلیت‌های ماژولار مجهز کنید. به مستندات مراجعه کنید. با / در پرامپت به‌صورت صریح ارجاع دهید.", "agentDetail.configure.skills.toggle": "تغییر مهارت‌ها", "agentDetail.configure.skills.upload.action": "بارگذاری", "agentDetail.configure.skills.upload.browse": "مرور", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "پیش‌مجوز", "agentDetail.configure.tools.removeAction": "حذف {{name}}", "agentDetail.configure.tools.removeProvider": "حذف همه ابزارها", - "agentDetail.configure.tools.tip": "ابزارهایی که این عامل هنگام هماهنگی وظایف می‌تواند فراخوانی کند.", + "agentDetail.configure.tools.richTip": "عامل خود را به افزونه‌های Dify مجهز کنید. به مستندات مراجعه کنید. با / در پرامپت به‌صورت صریح ارجاع دهید.\nهمچنین همیشه می‌توانید از طریق چت Build به عامل بگویید ابزارهای دیگر (مانند MCPها و ابزارهای CLI) را نصب و احراز هویت کند. توجه کنید ابزارهایی که از طریق چت‌های Build پیکربندی می‌شوند اینجا نمایش داده نمی‌شوند، اما همچنان در ادامه برای عامل شما در دسترس خواهند بود. به مستندات مراجعه کنید.", + "agentDetail.configure.tools.tip": "عامل خود را به افزونه‌های Dify مجهز کنید. به مستندات مراجعه کنید. با / در پرامپت به‌صورت صریح ارجاع دهید. همچنین همیشه می‌توانید از طریق چت Build به عامل بگویید ابزارهای دیگر (مانند MCPها و ابزارهای CLI) را نصب و احراز هویت کند. توجه کنید ابزارهایی که از طریق چت‌های Build پیکربندی می‌شوند اینجا نمایش داده نمی‌شوند، اما همچنان در ادامه برای عامل شما در دسترس خواهند بود. به مستندات مراجعه کنید.", "agentDetail.configure.tools.toggle": "تغییر ابزارها", "agentDetail.configure.tools.toolTabs.all": "همه", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/fr-FR/agent-v-2.json b/web/i18n/fr-FR/agent-v-2.json index f822d741de5..6f7330daf69 100644 --- a/web/i18n/fr-FR/agent-v-2.json +++ b/web/i18n/fr-FR/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Échec du chargement de l’aperçu.", "agentDetail.configure.files.preview.unsupported": "Ce fichier ne prend pas en charge l’aperçu.", "agentDetail.configure.files.remove": "Supprimer {{name}}", - "agentDetail.configure.files.tip": "Fichiers que cet agent peut utiliser lors de l’orchestration des tâches.", + "agentDetail.configure.files.tip": "Fournissez à votre agent tout exemple, consigne ou simple support d’information trop long pour le prompt. Référencez-le explicitement avec / dans le prompt.", "agentDetail.configure.files.toggle": "Basculer les fichiers", "agentDetail.configure.files.treeLabel": "Fichiers de l’agent", "agentDetail.configure.files.upload.action": "Téléverser", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Mentionner", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Écrivez les instructions ici,", - "agentDetail.configure.prompt.tip": "Définissez comment cet agent doit interpréter les entrées, appeler les outils et produire les sorties.", + "agentDetail.configure.prompt.tip": "Définissez le rôle de l’agent et décrivez sa tâche habituelle. Utilisez / pour faire explicitement référence aux compétences, fichiers, outils et récupérations de connaissances.", "agentDetail.configure.publishBar.draft": "Brouillon", "agentDetail.configure.publishBar.publishUpdate": "Publier la mise à jour", "agentDetail.configure.publishBar.published": "Publié", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Compétence", "agentDetail.configure.skills.label": "Compétences", "agentDetail.configure.skills.remove": "Supprimer {{name}}", - "agentDetail.configure.skills.tip": "Compétences que cet agent peut utiliser lors de l’orchestration des tâches.", + "agentDetail.configure.skills.richTip": "Équipez votre agent de capacités modulaires. Consultez la documentation. Référencez-les explicitement avec / dans le prompt.", + "agentDetail.configure.skills.tip": "Équipez votre agent de capacités modulaires. Consultez la documentation. Référencez-les explicitement avec / dans le prompt.", "agentDetail.configure.skills.toggle": "Basculer les compétences", "agentDetail.configure.skills.upload.action": "Téléverser", "agentDetail.configure.skills.upload.browse": "parcourir", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Pré-autoriser", "agentDetail.configure.tools.removeAction": "Supprimer {{name}}", "agentDetail.configure.tools.removeProvider": "Supprimer tous les outils", - "agentDetail.configure.tools.tip": "Outils que cet agent peut appeler lors de l’orchestration des tâches.", + "agentDetail.configure.tools.richTip": "Équipez votre agent avec les plugins de Dify. Consultez la documentation. Référencez-les explicitement avec / dans le prompt.\nVous pouvez aussi toujours demander à l’agent d’installer et d’authentifier d’autres outils (par exemple des MCPs et des outils CLI) via un chat Build. Notez que les outils configurés via les chats Build n’apparaîtront PAS ici, même s’ils resteront disponibles pour votre agent par la suite. Consultez la documentation.", + "agentDetail.configure.tools.tip": "Équipez votre agent avec les plugins de Dify. Consultez la documentation. Référencez-les explicitement avec / dans le prompt. Vous pouvez aussi toujours demander à l’agent d’installer et d’authentifier d’autres outils (par exemple des MCPs et des outils CLI) via un chat Build. Notez que les outils configurés via les chats Build n’apparaîtront PAS ici, même s’ils resteront disponibles pour votre agent par la suite. Consultez la documentation.", "agentDetail.configure.tools.toggle": "Basculer les outils", "agentDetail.configure.tools.toolTabs.all": "Tous", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/hi-IN/agent-v-2.json b/web/i18n/hi-IN/agent-v-2.json index 5884a975746..3675a9ac5f8 100644 --- a/web/i18n/hi-IN/agent-v-2.json +++ b/web/i18n/hi-IN/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "पूर्वावलोकन लोड करने में विफल।", "agentDetail.configure.files.preview.unsupported": "यह फ़ाइल पूर्वावलोकन का समर्थन नहीं करती।", "agentDetail.configure.files.remove": "{{name}} हटाएँ", - "agentDetail.configure.files.tip": "इस एजेंट द्वारा कार्यों को व्यवस्थित करते समय उपयोग की जा सकने वाली फ़ाइलें।", + "agentDetail.configure.files.tip": "अपने एजेंट को कोई उदाहरण, दिशा-निर्देश या ऐसी जानकारी दें जो प्रॉम्प्ट के लिए बहुत लंबी हो। प्रॉम्प्ट में / का उपयोग करके स्पष्ट संदर्भ दें।", "agentDetail.configure.files.toggle": "फ़ाइलें टॉगल करें", "agentDetail.configure.files.treeLabel": "एजेंट फ़ाइलें", "agentDetail.configure.files.upload.action": "अपलोड करें", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "उल्लेख करें", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "यहाँ निर्देश लिखें,", - "agentDetail.configure.prompt.tip": "परिभाषित करें कि यह एजेंट इनपुट की व्याख्या कैसे करे, उपकरण कैसे कॉल करे और आउटपुट कैसे उत्पन्न करे।", + "agentDetail.configure.prompt.tip": "एजेंट की भूमिका परिभाषित करें और उसके सामान्य कार्य का वर्णन करें। Skills, Files, Tools और Knowledge Retrievals का स्पष्ट संदर्भ देने के लिए / का उपयोग करें।", "agentDetail.configure.publishBar.draft": "ड्राफ्ट", "agentDetail.configure.publishBar.publishUpdate": "अपडेट प्रकाशित करें", "agentDetail.configure.publishBar.published": "प्रकाशित", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "कौशल", "agentDetail.configure.skills.label": "कौशल", "agentDetail.configure.skills.remove": "{{name}} हटाएँ", - "agentDetail.configure.skills.tip": "इस एजेंट द्वारा कार्यों को व्यवस्थित करते समय उपयोग किए जा सकने वाले कौशल।", + "agentDetail.configure.skills.richTip": "अपने एजेंट को मॉड्यूलर क्षमताओं से लैस करें। दस्तावेज़ देखें। प्रॉम्प्ट में / का उपयोग करके स्पष्ट संदर्भ दें।", + "agentDetail.configure.skills.tip": "अपने एजेंट को मॉड्यूलर क्षमताओं से लैस करें। दस्तावेज़ देखें। प्रॉम्प्ट में / का उपयोग करके स्पष्ट संदर्भ दें।", "agentDetail.configure.skills.toggle": "कौशल टॉगल करें", "agentDetail.configure.skills.upload.action": "अपलोड करें", "agentDetail.configure.skills.upload.browse": "ब्राउज़ करें", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "पूर्व-अधिकृत करें", "agentDetail.configure.tools.removeAction": "{{name}} हटाएँ", "agentDetail.configure.tools.removeProvider": "सभी उपकरण हटाएँ", - "agentDetail.configure.tools.tip": "इस एजेंट द्वारा कार्यों को व्यवस्थित करते समय कॉल किए जा सकने वाले उपकरण।", + "agentDetail.configure.tools.richTip": "अपने एजेंट को Dify के प्लगइन से लैस करें। दस्तावेज़ देखें। प्रॉम्प्ट में / का उपयोग करके स्पष्ट संदर्भ दें।\nवैकल्पिक रूप से, आप Build chat के माध्यम से एजेंट को अन्य टूल (जैसे MCPs और CLI tools) इंस्टॉल और प्रमाणित करने के लिए हमेशा कह सकते हैं। ध्यान दें कि Build chats के माध्यम से कॉन्फ़िगर किए गए टूल यहां दिखाई नहीं देंगे, हालांकि वे आगे भी आपके एजेंट के लिए उपलब्ध रहेंगे। दस्तावेज़ देखें।", + "agentDetail.configure.tools.tip": "अपने एजेंट को Dify के प्लगइन से लैस करें। दस्तावेज़ देखें। प्रॉम्प्ट में / का उपयोग करके स्पष्ट संदर्भ दें। वैकल्पिक रूप से, आप Build chat के माध्यम से एजेंट को अन्य टूल (जैसे MCPs और CLI tools) इंस्टॉल और प्रमाणित करने के लिए हमेशा कह सकते हैं। ध्यान दें कि Build chats के माध्यम से कॉन्फ़िगर किए गए टूल यहां दिखाई नहीं देंगे, हालांकि वे आगे भी आपके एजेंट के लिए उपलब्ध रहेंगे। दस्तावेज़ देखें।", "agentDetail.configure.tools.toggle": "उपकरण टॉगल करें", "agentDetail.configure.tools.toolTabs.all": "सभी", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/id-ID/agent-v-2.json b/web/i18n/id-ID/agent-v-2.json index 950f99a304f..4ddf669236f 100644 --- a/web/i18n/id-ID/agent-v-2.json +++ b/web/i18n/id-ID/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Gagal memuat pratinjau.", "agentDetail.configure.files.preview.unsupported": "File ini tidak mendukung pratinjau.", "agentDetail.configure.files.remove": "Hapus {{name}}", - "agentDetail.configure.files.tip": "File yang dapat digunakan agen ini saat mengorkestrasi tugas.", + "agentDetail.configure.files.tip": "Berikan agen Anda contoh, panduan, atau sekadar pembawa informasi yang terlalu panjang untuk prompt. Buat referensi eksplisit dengan / di Prompt.", "agentDetail.configure.files.toggle": "Alihkan file", "agentDetail.configure.files.treeLabel": "File agen", "agentDetail.configure.files.upload.action": "Unggah", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Sebut", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Tulis instruksi di sini,", - "agentDetail.configure.prompt.tip": "Tentukan bagaimana agen ini harus menafsirkan input, memanggil alat, dan menghasilkan output.", + "agentDetail.configure.prompt.tip": "Tentukan peran agen dan jelaskan tugas umumnya. Gunakan / untuk membuat referensi eksplisit ke Skills, Files, Tools, dan Knowledge Retrievals.", "agentDetail.configure.publishBar.draft": "Draf", "agentDetail.configure.publishBar.publishUpdate": "Terbitkan pembaruan", "agentDetail.configure.publishBar.published": "Diterbitkan", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Keterampilan", "agentDetail.configure.skills.label": "Keterampilan", "agentDetail.configure.skills.remove": "Hapus {{name}}", - "agentDetail.configure.skills.tip": "Keterampilan yang dapat digunakan agen ini saat mengorkestrasi tugas.", + "agentDetail.configure.skills.richTip": "Lengkapi agen Anda dengan kemampuan modular. Lihat dokumentasi. Buat referensi eksplisit dengan / di Prompt.", + "agentDetail.configure.skills.tip": "Lengkapi agen Anda dengan kemampuan modular. Lihat dokumentasi. Buat referensi eksplisit dengan / di Prompt.", "agentDetail.configure.skills.toggle": "Alihkan keterampilan", "agentDetail.configure.skills.upload.action": "Unggah", "agentDetail.configure.skills.upload.browse": "telusuri", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Otorisasi sebelumnya", "agentDetail.configure.tools.removeAction": "Hapus {{name}}", "agentDetail.configure.tools.removeProvider": "Hapus semua alat", - "agentDetail.configure.tools.tip": "Alat yang dapat dipanggil agen ini saat mengorkestrasi tugas.", + "agentDetail.configure.tools.richTip": "Lengkapi agen Anda dengan plugin Dify. Lihat dokumentasi. Buat referensi eksplisit dengan / di Prompt.\nAtau, Anda selalu dapat meminta agen untuk menginstal dan mengautentikasi alat lain (misalnya MCPs dan CLI tools) melalui Build chat. Perhatikan bahwa alat yang dikonfigurasi melalui Build chats TIDAK akan muncul di sini, meskipun tetap tersedia untuk agen Anda ke depannya. Lihat dokumentasi.", + "agentDetail.configure.tools.tip": "Lengkapi agen Anda dengan plugin Dify. Lihat dokumentasi. Buat referensi eksplisit dengan / di Prompt. Atau, Anda selalu dapat meminta agen untuk menginstal dan mengautentikasi alat lain (misalnya MCPs dan CLI tools) melalui Build chat. Perhatikan bahwa alat yang dikonfigurasi melalui Build chats TIDAK akan muncul di sini, meskipun tetap tersedia untuk agen Anda ke depannya. Lihat dokumentasi.", "agentDetail.configure.tools.toggle": "Alihkan alat", "agentDetail.configure.tools.toolTabs.all": "Semua", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/it-IT/agent-v-2.json b/web/i18n/it-IT/agent-v-2.json index e9eebf495de..7fb57c85705 100644 --- a/web/i18n/it-IT/agent-v-2.json +++ b/web/i18n/it-IT/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Impossibile caricare l’anteprima.", "agentDetail.configure.files.preview.unsupported": "Questo file non supporta l’anteprima.", "agentDetail.configure.files.remove": "Rimuovi {{name}}", - "agentDetail.configure.files.tip": "File che questo agente può utilizzare durante l’orchestrazione delle attività.", + "agentDetail.configure.files.tip": "Fornisci al tuo agente esempi, linee guida o semplicemente informazioni troppo lunghe per il prompt. Fai riferimento esplicito con / nel prompt.", "agentDetail.configure.files.toggle": "Attiva/disattiva file", "agentDetail.configure.files.treeLabel": "File dell’agente", "agentDetail.configure.files.upload.action": "Carica", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Menziona", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Scrivi le istruzioni qui,", - "agentDetail.configure.prompt.tip": "Definisci come questo agente deve interpretare gli input, chiamare gli strumenti e produrre output.", + "agentDetail.configure.prompt.tip": "Definisci il ruolo dell’agente e descrivi la sua attività tipica. Usa / per fare riferimento esplicito a abilità, file, strumenti e recuperi di conoscenza.", "agentDetail.configure.publishBar.draft": "Bozza", "agentDetail.configure.publishBar.publishUpdate": "Pubblica aggiornamento", "agentDetail.configure.publishBar.published": "Pubblicato", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Abilità", "agentDetail.configure.skills.label": "Abilità", "agentDetail.configure.skills.remove": "Rimuovi {{name}}", - "agentDetail.configure.skills.tip": "Abilità che questo agente può utilizzare durante l’orchestrazione delle attività.", + "agentDetail.configure.skills.richTip": "Dota il tuo agente di capacità modulari. Consulta la documentazione. Fai riferimento esplicito con / nel prompt.", + "agentDetail.configure.skills.tip": "Dota il tuo agente di capacità modulari. Consulta la documentazione. Fai riferimento esplicito con / nel prompt.", "agentDetail.configure.skills.toggle": "Attiva/disattiva abilità", "agentDetail.configure.skills.upload.action": "Carica", "agentDetail.configure.skills.upload.browse": "sfoglia", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Pre-autorizza", "agentDetail.configure.tools.removeAction": "Rimuovi {{name}}", "agentDetail.configure.tools.removeProvider": "Rimuovi tutti gli strumenti", - "agentDetail.configure.tools.tip": "Strumenti che questo agente può chiamare durante l’orchestrazione delle attività.", + "agentDetail.configure.tools.richTip": "Dota il tuo agente dei plugin di Dify. Consulta la documentazione. Fai riferimento esplicito con / nel prompt.\nIn alternativa, puoi sempre dire all’agente di installare e autenticare altri strumenti (ad esempio MCPs e strumenti CLI) tramite una chat Build. Nota che gli strumenti configurati tramite chat Build NON appariranno qui, anche se resteranno disponibili per il tuo agente in futuro. Consulta la documentazione.", + "agentDetail.configure.tools.tip": "Dota il tuo agente dei plugin di Dify. Consulta la documentazione. Fai riferimento esplicito con / nel prompt. In alternativa, puoi sempre dire all’agente di installare e autenticare altri strumenti (ad esempio MCPs e strumenti CLI) tramite una chat Build. Nota che gli strumenti configurati tramite chat Build NON appariranno qui, anche se resteranno disponibili per il tuo agente in futuro. Consulta la documentazione.", "agentDetail.configure.tools.toggle": "Attiva/disattiva strumenti", "agentDetail.configure.tools.toolTabs.all": "Tutti", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/ja-JP/agent-v-2.json b/web/i18n/ja-JP/agent-v-2.json index 98aa1c776be..8f9f4b32f26 100644 --- a/web/i18n/ja-JP/agent-v-2.json +++ b/web/i18n/ja-JP/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "プレビューの読み込みに失敗しました。", "agentDetail.configure.files.preview.unsupported": "ファイルはプレビューに対応していません。", "agentDetail.configure.files.remove": "{{name}} を削除", - "agentDetail.configure.files.tip": "このエージェントがタスクのオーケストレーション中に利用できるファイル。", + "agentDetail.configure.files.tip": "プロンプトには長すぎる例、ガイドライン、または情報そのものをエージェントに提供します。プロンプト内で / を使って明示的に参照してください。", "agentDetail.configure.files.toggle": "ファイルの表示を切り替え", "agentDetail.configure.files.treeLabel": "エージェントファイル", "agentDetail.configure.files.upload.action": "アップロード", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "メンション", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "ここに指示を記述してください、", - "agentDetail.configure.prompt.tip": "このエージェントが入力をどう解釈し、ツールを呼び出し、出力を生成するかを定義します。", + "agentDetail.configure.prompt.tip": "エージェントの役割を定義し、通常のタスクを説明します。/ を使ってスキル、ファイル、ツール、ナレッジ検索を明示的に参照してください。", "agentDetail.configure.publishBar.draft": "ドラフト", "agentDetail.configure.publishBar.publishUpdate": "更新を公開", "agentDetail.configure.publishBar.published": "公開済み", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "スキル", "agentDetail.configure.skills.label": "スキル", "agentDetail.configure.skills.remove": "{{name}} を削除", - "agentDetail.configure.skills.tip": "このエージェントがタスクのオーケストレーション中に利用できるスキル。", + "agentDetail.configure.skills.richTip": "エージェントにモジュール式の機能を装備します。ドキュメントを参照してください。プロンプト内で / を使って明示的に参照してください。", + "agentDetail.configure.skills.tip": "エージェントにモジュール式の機能を装備します。ドキュメントを参照してください。プロンプト内で / を使って明示的に参照してください。", "agentDetail.configure.skills.toggle": "スキルの表示を切り替え", "agentDetail.configure.skills.upload.action": "アップロード", "agentDetail.configure.skills.upload.browse": "選択", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "事前認可", "agentDetail.configure.tools.removeAction": "{{name}} を削除", "agentDetail.configure.tools.removeProvider": "すべてのツールを削除", - "agentDetail.configure.tools.tip": "このエージェントがタスクのオーケストレーション中に呼び出せるツール。", + "agentDetail.configure.tools.richTip": "エージェントに Dify のプラグインを装備します。ドキュメントを参照してください。プロンプト内で / を使って明示的に参照してください。\nまた、Build チャットを通じて、他のツール(MCPs や CLI ツールなど)のインストールと認証をエージェントに指示することもできます。Build チャットで設定したツールはここには表示されませんが、今後もエージェントで利用できます。ドキュメントを参照してください。", + "agentDetail.configure.tools.tip": "エージェントに Dify のプラグインを装備します。ドキュメントを参照してください。プロンプト内で / を使って明示的に参照してください。また、Build チャットを通じて、他のツール(MCPs や CLI ツールなど)のインストールと認証をエージェントに指示することもできます。Build チャットで設定したツールはここには表示されませんが、今後もエージェントで利用できます。ドキュメントを参照してください。", "agentDetail.configure.tools.toggle": "ツールの表示を切り替え", "agentDetail.configure.tools.toolTabs.all": "すべて", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/ko-KR/agent-v-2.json b/web/i18n/ko-KR/agent-v-2.json index 2a8cf38ae6a..8d076eaad7a 100644 --- a/web/i18n/ko-KR/agent-v-2.json +++ b/web/i18n/ko-KR/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "미리보기를 불러오지 못했습니다.", "agentDetail.configure.files.preview.unsupported": "이 파일은 미리보기를 지원하지 않습니다.", "agentDetail.configure.files.remove": "{{name}} 제거", - "agentDetail.configure.files.tip": "이 에이전트가 작업을 오케스트레이션할 때 사용할 수 있는 파일입니다.", + "agentDetail.configure.files.tip": "프롬프트에 넣기에는 너무 긴 예시, 가이드라인 또는 정보 자체를 에이전트에 제공합니다. 프롬프트에서 /로 명시적으로 참조하세요.", "agentDetail.configure.files.toggle": "파일 전환", "agentDetail.configure.files.treeLabel": "에이전트 파일", "agentDetail.configure.files.upload.action": "업로드", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "멘션", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "여기에 지시 사항을 작성하세요,", - "agentDetail.configure.prompt.tip": "이 에이전트가 입력을 어떻게 해석하고, 도구를 호출하며, 출력을 생성할지 정의합니다.", + "agentDetail.configure.prompt.tip": "에이전트의 역할을 정의하고 일반적인 작업을 설명합니다. /를 사용해 스킬, 파일, 도구, 지식 검색을 명시적으로 참조하세요.", "agentDetail.configure.publishBar.draft": "초안", "agentDetail.configure.publishBar.publishUpdate": "업데이트 게시", "agentDetail.configure.publishBar.published": "게시됨", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "스킬", "agentDetail.configure.skills.label": "스킬", "agentDetail.configure.skills.remove": "{{name}} 제거", - "agentDetail.configure.skills.tip": "이 에이전트가 작업을 오케스트레이션할 때 사용할 수 있는 스킬입니다.", + "agentDetail.configure.skills.richTip": "에이전트에 모듈형 기능을 갖추세요. 문서를 참조하세요. 프롬프트에서 /로 명시적으로 참조하세요.", + "agentDetail.configure.skills.tip": "에이전트에 모듈형 기능을 갖추세요. 문서를 참조하세요. 프롬프트에서 /로 명시적으로 참조하세요.", "agentDetail.configure.skills.toggle": "스킬 전환", "agentDetail.configure.skills.upload.action": "업로드", "agentDetail.configure.skills.upload.browse": "찾아보기", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "사전 승인", "agentDetail.configure.tools.removeAction": "{{name}} 제거", "agentDetail.configure.tools.removeProvider": "모든 도구 제거", - "agentDetail.configure.tools.tip": "이 에이전트가 작업을 오케스트레이션할 때 호출할 수 있는 도구입니다.", + "agentDetail.configure.tools.richTip": "에이전트에 Dify 플러그인을 갖추세요. 문서를 참조하세요. 프롬프트에서 /로 명시적으로 참조하세요.\n또는 Build 채팅을 통해 에이전트에게 다른 도구(예: MCPs 및 CLI 도구)를 설치하고 인증하도록 지시할 수도 있습니다. Build 채팅에서 구성한 도구는 여기에 표시되지 않지만, 앞으로도 에이전트에서 계속 사용할 수 있습니다. 문서를 참조하세요.", + "agentDetail.configure.tools.tip": "에이전트에 Dify 플러그인을 갖추세요. 문서를 참조하세요. 프롬프트에서 /로 명시적으로 참조하세요. 또는 Build 채팅을 통해 에이전트에게 다른 도구(예: MCPs 및 CLI 도구)를 설치하고 인증하도록 지시할 수도 있습니다. Build 채팅에서 구성한 도구는 여기에 표시되지 않지만, 앞으로도 에이전트에서 계속 사용할 수 있습니다. 문서를 참조하세요.", "agentDetail.configure.tools.toggle": "도구 전환", "agentDetail.configure.tools.toolTabs.all": "전체", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/nl-NL/agent-v-2.json b/web/i18n/nl-NL/agent-v-2.json index 4ce583201b0..bf26aaf2e27 100644 --- a/web/i18n/nl-NL/agent-v-2.json +++ b/web/i18n/nl-NL/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Laden van voorbeeld mislukt.", "agentDetail.configure.files.preview.unsupported": "Dit bestand ondersteunt geen voorbeeldweergave.", "agentDetail.configure.files.remove": "{{name}} verwijderen", - "agentDetail.configure.files.tip": "Bestanden die deze agent kan gebruiken tijdens het orkestreren van taken.", + "agentDetail.configure.files.tip": "Geef uw agent voorbeelden, richtlijnen of simpelweg informatie die te lang is voor de prompt. Verwijs er expliciet naar met / in de prompt.", "agentDetail.configure.files.toggle": "Bestanden in/uit", "agentDetail.configure.files.treeLabel": "Agentbestanden", "agentDetail.configure.files.upload.action": "Uploaden", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Vermelden", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Schrijf hier instructies,", - "agentDetail.configure.prompt.tip": "Bepaal hoe deze agent invoer interpreteert, tools aanroept en uitvoer genereert.", + "agentDetail.configure.prompt.tip": "Definieer de rol van de agent en beschrijf zijn typische taak. Gebruik / om expliciet te verwijzen naar skills, bestanden, tools en kennisophalingen.", "agentDetail.configure.publishBar.draft": "Concept", "agentDetail.configure.publishBar.publishUpdate": "Update publiceren", "agentDetail.configure.publishBar.published": "Gepubliceerd", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Skill", "agentDetail.configure.skills.label": "Skills", "agentDetail.configure.skills.remove": "{{name}} verwijderen", - "agentDetail.configure.skills.tip": "Skills die deze agent kan gebruiken tijdens het orkestreren van taken.", + "agentDetail.configure.skills.richTip": "Voorzie uw agent van modulaire mogelijkheden. Zie documentatie. Verwijs er expliciet naar met / in de prompt.", + "agentDetail.configure.skills.tip": "Voorzie uw agent van modulaire mogelijkheden. Zie documentatie. Verwijs er expliciet naar met / in de prompt.", "agentDetail.configure.skills.toggle": "Skills in/uit", "agentDetail.configure.skills.upload.action": "Uploaden", "agentDetail.configure.skills.upload.browse": "bladeren", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Vooraf autoriseren", "agentDetail.configure.tools.removeAction": "{{name}} verwijderen", "agentDetail.configure.tools.removeProvider": "Alle tools verwijderen", - "agentDetail.configure.tools.tip": "Tools die deze agent kan aanroepen tijdens het orkestreren van taken.", + "agentDetail.configure.tools.richTip": "Voorzie uw agent van Dify-plugins. Zie documentatie. Verwijs er expliciet naar met / in de prompt.\nU kunt de agent ook altijd via een Build-chat vragen andere tools (bijv. MCPs en CLI-tools) te installeren en te authenticeren. Let op: tools die via Build-chats zijn geconfigureerd, verschijnen hier NIET, hoewel ze voortaan nog steeds beschikbaar zijn voor uw agent. Zie documentatie.", + "agentDetail.configure.tools.tip": "Voorzie uw agent van Dify-plugins. Zie documentatie. Verwijs er expliciet naar met / in de prompt. U kunt de agent ook altijd via een Build-chat vragen andere tools (bijv. MCPs en CLI-tools) te installeren en te authenticeren. Let op: tools die via Build-chats zijn geconfigureerd, verschijnen hier NIET, hoewel ze voortaan nog steeds beschikbaar zijn voor uw agent. Zie documentatie.", "agentDetail.configure.tools.toggle": "Tools in/uit", "agentDetail.configure.tools.toolTabs.all": "Alle", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/pl-PL/agent-v-2.json b/web/i18n/pl-PL/agent-v-2.json index b194c002978..80a03aca8fd 100644 --- a/web/i18n/pl-PL/agent-v-2.json +++ b/web/i18n/pl-PL/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Nie udało się załadować podglądu.", "agentDetail.configure.files.preview.unsupported": "Ten plik nie obsługuje podglądu.", "agentDetail.configure.files.remove": "Usuń {{name}}", - "agentDetail.configure.files.tip": "Pliki, których ten agent może używać podczas wykonywania zadań.", + "agentDetail.configure.files.tip": "Przekaż agentowi dowolny przykład, wytyczne lub po prostu nośnik informacji, który jest zbyt długi dla promptu. Odwołaj się do niego jawnie za pomocą / w prompcie.", "agentDetail.configure.files.toggle": "Przełącz pliki", "agentDetail.configure.files.treeLabel": "Pliki agenta", "agentDetail.configure.files.upload.action": "Prześlij", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Wzmianka", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Napisz tutaj instrukcje,", - "agentDetail.configure.prompt.tip": "Określ, jak ten agent ma interpretować dane wejściowe, wywoływać narzędzia i tworzyć dane wyjściowe.", + "agentDetail.configure.prompt.tip": "Zdefiniuj rolę agenta i opisz jego typowe zadanie. Użyj /, aby jawnie odwołać się do umiejętności, plików, narzędzi i pobierania wiedzy.", "agentDetail.configure.publishBar.draft": "Wersja robocza", "agentDetail.configure.publishBar.publishUpdate": "Opublikuj aktualizację", "agentDetail.configure.publishBar.published": "Opublikowane", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Umiejętność", "agentDetail.configure.skills.label": "Umiejętności", "agentDetail.configure.skills.remove": "Usuń {{name}}", - "agentDetail.configure.skills.tip": "Umiejętności, których ten agent może używać podczas wykonywania zadań.", + "agentDetail.configure.skills.richTip": "Wyposaż agenta w modułowe możliwości. Zobacz dokumentację. Odwołaj się do nich jawnie za pomocą / w prompcie.", + "agentDetail.configure.skills.tip": "Wyposaż agenta w modułowe możliwości. Zobacz dokumentację. Odwołaj się do nich jawnie za pomocą / w prompcie.", "agentDetail.configure.skills.toggle": "Przełącz umiejętności", "agentDetail.configure.skills.upload.action": "Prześlij", "agentDetail.configure.skills.upload.browse": "przeglądaj", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Wstępna autoryzacja", "agentDetail.configure.tools.removeAction": "Usuń {{name}}", "agentDetail.configure.tools.removeProvider": "Usuń wszystkie narzędzia", - "agentDetail.configure.tools.tip": "Narzędzia, które ten agent może wywoływać podczas wykonywania zadań.", + "agentDetail.configure.tools.richTip": "Wyposaż agenta we wtyczki Dify. Zobacz dokumentację. Odwołaj się do nich jawnie za pomocą / w prompcie.\nAlternatywnie możesz zawsze polecić agentowi instalację i uwierzytelnienie innych narzędzi (np. MCPs i narzędzi CLI) przez czat Build. Pamiętaj, że narzędzia skonfigurowane przez czaty Build NIE pojawią się tutaj, choć nadal będą dostępne dla agenta w przyszłości. Zobacz dokumentację.", + "agentDetail.configure.tools.tip": "Wyposaż agenta we wtyczki Dify. Zobacz dokumentację. Odwołaj się do nich jawnie za pomocą / w prompcie. Alternatywnie możesz zawsze polecić agentowi instalację i uwierzytelnienie innych narzędzi (np. MCPs i narzędzi CLI) przez czat Build. Pamiętaj, że narzędzia skonfigurowane przez czaty Build NIE pojawią się tutaj, choć nadal będą dostępne dla agenta w przyszłości. Zobacz dokumentację.", "agentDetail.configure.tools.toggle": "Przełącz narzędzia", "agentDetail.configure.tools.toolTabs.all": "Wszystkie", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/pt-BR/agent-v-2.json b/web/i18n/pt-BR/agent-v-2.json index 11f84d7ee52..e5f7dd8c2c9 100644 --- a/web/i18n/pt-BR/agent-v-2.json +++ b/web/i18n/pt-BR/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Falha ao carregar a pré-visualização.", "agentDetail.configure.files.preview.unsupported": "Este arquivo não oferece suporte à pré-visualização.", "agentDetail.configure.files.remove": "Remover {{name}}", - "agentDetail.configure.files.tip": "Arquivos que este agente pode usar ao orquestrar tarefas.", + "agentDetail.configure.files.tip": "Forneça ao seu agente qualquer exemplo, diretriz ou simplesmente um portador de informações que seja longo demais para o prompt. Faça referência explícita com / no prompt.", "agentDetail.configure.files.toggle": "Alternar arquivos", "agentDetail.configure.files.treeLabel": "Arquivos do agente", "agentDetail.configure.files.upload.action": "Enviar", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Mencionar", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Escreva as instruções aqui,", - "agentDetail.configure.prompt.tip": "Defina como este agente deve interpretar entradas, chamar ferramentas e produzir saídas.", + "agentDetail.configure.prompt.tip": "Defina o papel do agente e descreva sua tarefa típica. Use / para fazer referência explícita a habilidades, arquivos, ferramentas e recuperações de conhecimento.", "agentDetail.configure.publishBar.draft": "Rascunho", "agentDetail.configure.publishBar.publishUpdate": "Publicar atualização", "agentDetail.configure.publishBar.published": "Publicado", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Habilidade", "agentDetail.configure.skills.label": "Habilidades", "agentDetail.configure.skills.remove": "Remover {{name}}", - "agentDetail.configure.skills.tip": "Habilidades que este agente pode usar ao orquestrar tarefas.", + "agentDetail.configure.skills.richTip": "Equipe seu agente com capacidades modulares. Consulte a documentação. Faça referência explícita com / no prompt.", + "agentDetail.configure.skills.tip": "Equipe seu agente com capacidades modulares. Consulte a documentação. Faça referência explícita com / no prompt.", "agentDetail.configure.skills.toggle": "Alternar habilidades", "agentDetail.configure.skills.upload.action": "Enviar", "agentDetail.configure.skills.upload.browse": "procurar", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Pré-autorizar", "agentDetail.configure.tools.removeAction": "Remover {{name}}", "agentDetail.configure.tools.removeProvider": "Remover todas as ferramentas", - "agentDetail.configure.tools.tip": "Ferramentas que este agente pode chamar ao orquestrar tarefas.", + "agentDetail.configure.tools.richTip": "Equipe seu agente com os plugins do Dify. Consulte a documentação. Faça referência explícita com / no prompt.\nComo alternativa, você sempre pode dizer ao agente para instalar e autenticar outras ferramentas (por exemplo, MCPs e ferramentas CLI) via um chat de Build. Observe que as ferramentas configuradas por chats de Build NÃO aparecerão aqui, embora continuem disponíveis para o seu agente daqui em diante. Consulte a documentação.", + "agentDetail.configure.tools.tip": "Equipe seu agente com os plugins do Dify. Consulte a documentação. Faça referência explícita com / no prompt. Como alternativa, você sempre pode dizer ao agente para instalar e autenticar outras ferramentas (por exemplo, MCPs e ferramentas CLI) via um chat de Build. Observe que as ferramentas configuradas por chats de Build NÃO aparecerão aqui, embora continuem disponíveis para o seu agente daqui em diante. Consulte a documentação.", "agentDetail.configure.tools.toggle": "Alternar ferramentas", "agentDetail.configure.tools.toolTabs.all": "Todas", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/ro-RO/agent-v-2.json b/web/i18n/ro-RO/agent-v-2.json index 16907b4d9bc..9db5768012d 100644 --- a/web/i18n/ro-RO/agent-v-2.json +++ b/web/i18n/ro-RO/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Încărcarea previzualizării a eșuat.", "agentDetail.configure.files.preview.unsupported": "Acest fișier nu acceptă previzualizarea.", "agentDetail.configure.files.remove": "Elimină {{name}}", - "agentDetail.configure.files.tip": "Fișiere pe care acest agent le poate folosi în timpul orchestrării sarcinilor.", + "agentDetail.configure.files.tip": "Oferiți agentului orice exemplu, ghid sau pur și simplu un suport de informații prea lung pentru prompt. Faceți referire explicită cu / în prompt.", "agentDetail.configure.files.toggle": "Comută fișierele", "agentDetail.configure.files.treeLabel": "Fișierele agentului", "agentDetail.configure.files.upload.action": "Încarcă", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Menționează", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Scrieți instrucțiunile aici,", - "agentDetail.configure.prompt.tip": "Definiți modul în care acest agent ar trebui să interpreteze intrările, să apeleze instrumentele și să producă ieșirile.", + "agentDetail.configure.prompt.tip": "Definiți rolul agentului și descrieți sarcina sa tipică. Folosiți / pentru a face referire explicită la abilități, fișiere, instrumente și recuperări de cunoștințe.", "agentDetail.configure.publishBar.draft": "Ciornă", "agentDetail.configure.publishBar.publishUpdate": "Publică actualizarea", "agentDetail.configure.publishBar.published": "Publicat", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Abilitate", "agentDetail.configure.skills.label": "Abilități", "agentDetail.configure.skills.remove": "Elimină {{name}}", - "agentDetail.configure.skills.tip": "Abilități pe care acest agent le poate folosi în timpul orchestrării sarcinilor.", + "agentDetail.configure.skills.richTip": "Echipați agentul cu capabilități modulare. Consultați documentația. Faceți referire explicită cu / în prompt.", + "agentDetail.configure.skills.tip": "Echipați agentul cu capabilități modulare. Consultați documentația. Faceți referire explicită cu / în prompt.", "agentDetail.configure.skills.toggle": "Comută abilitățile", "agentDetail.configure.skills.upload.action": "Încarcă", "agentDetail.configure.skills.upload.browse": "răsfoiește", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Pre-autorizați", "agentDetail.configure.tools.removeAction": "Eliminați {{name}}", "agentDetail.configure.tools.removeProvider": "Eliminați toate instrumentele", - "agentDetail.configure.tools.tip": "Instrumente pe care acest agent le poate apela în timpul orchestrării sarcinilor.", + "agentDetail.configure.tools.richTip": "Echipați agentul cu pluginurile Dify. Consultați documentația. Faceți referire explicită cu / în prompt.\nAlternativ, puteți oricând să îi spuneți agentului să instaleze și să autentifice alte instrumente (de ex. MCPs și instrumente CLI) printr-un chat Build. Rețineți că instrumentele configurate prin chat-uri Build NU vor apărea aici, deși vor rămâne disponibile pentru agentul dvs. în continuare. Consultați documentația.", + "agentDetail.configure.tools.tip": "Echipați agentul cu pluginurile Dify. Consultați documentația. Faceți referire explicită cu / în prompt. Alternativ, puteți oricând să îi spuneți agentului să instaleze și să autentifice alte instrumente (de ex. MCPs și instrumente CLI) printr-un chat Build. Rețineți că instrumentele configurate prin chat-uri Build NU vor apărea aici, deși vor rămâne disponibile pentru agentul dvs. în continuare. Consultați documentația.", "agentDetail.configure.tools.toggle": "Comută instrumentele", "agentDetail.configure.tools.toolTabs.all": "Toate", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/ru-RU/agent-v-2.json b/web/i18n/ru-RU/agent-v-2.json index a67bb113db0..863c9c6f043 100644 --- a/web/i18n/ru-RU/agent-v-2.json +++ b/web/i18n/ru-RU/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Не удалось загрузить предпросмотр.", "agentDetail.configure.files.preview.unsupported": "Этот файл не поддерживает предварительный просмотр.", "agentDetail.configure.files.remove": "Удалить {{name}}", - "agentDetail.configure.files.tip": "Файлы, которые этот агент может использовать при выполнении задач.", + "agentDetail.configure.files.tip": "Предоставьте агенту любой пример, инструкцию или просто носитель информации, который слишком длинный для промпта. Явно ссылайтесь на него через / в промпте.", "agentDetail.configure.files.toggle": "Переключить файлы", "agentDetail.configure.files.treeLabel": "Файлы агента", "agentDetail.configure.files.upload.action": "Загрузить", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Упомянуть", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Напишите инструкции здесь,", - "agentDetail.configure.prompt.tip": "Определите, как этот агент должен интерпретировать входные данные, вызывать инструменты и формировать выходные данные.", + "agentDetail.configure.prompt.tip": "Определите роль агента и опишите его типичную задачу. Используйте /, чтобы явно ссылаться на навыки, файлы, инструменты и извлечение знаний.", "agentDetail.configure.publishBar.draft": "Черновик", "agentDetail.configure.publishBar.publishUpdate": "Опубликовать обновление", "agentDetail.configure.publishBar.published": "Опубликовано", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Навык", "agentDetail.configure.skills.label": "Навыки", "agentDetail.configure.skills.remove": "Удалить {{name}}", - "agentDetail.configure.skills.tip": "Навыки, которые этот агент может использовать при выполнении задач.", + "agentDetail.configure.skills.richTip": "Оснастите агента модульными возможностями. См. документацию. Явно ссылайтесь на них через / в промпте.", + "agentDetail.configure.skills.tip": "Оснастите агента модульными возможностями. См. документацию. Явно ссылайтесь на них через / в промпте.", "agentDetail.configure.skills.toggle": "Переключить навыки", "agentDetail.configure.skills.upload.action": "Загрузить", "agentDetail.configure.skills.upload.browse": "обзор", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Предварительная авторизация", "agentDetail.configure.tools.removeAction": "Удалить {{name}}", "agentDetail.configure.tools.removeProvider": "Удалить все инструменты", - "agentDetail.configure.tools.tip": "Инструменты, которые этот агент может вызывать при выполнении задач.", + "agentDetail.configure.tools.richTip": "Оснастите агента плагинами Dify. См. документацию. Явно ссылайтесь на них через / в промпте.\nТакже вы всегда можете попросить агента установить и аутентифицировать другие инструменты (например, MCPs и CLI-инструменты) через Build-чат. Обратите внимание: инструменты, настроенные через Build-чаты, НЕ будут отображаться здесь, хотя и останутся доступны вашему агенту в дальнейшем. См. документацию.", + "agentDetail.configure.tools.tip": "Оснастите агента плагинами Dify. См. документацию. Явно ссылайтесь на них через / в промпте. Также вы всегда можете попросить агента установить и аутентифицировать другие инструменты (например, MCPs и CLI-инструменты) через Build-чат. Обратите внимание: инструменты, настроенные через Build-чаты, НЕ будут отображаться здесь, хотя и останутся доступны вашему агенту в дальнейшем. См. документацию.", "agentDetail.configure.tools.toggle": "Переключить инструменты", "agentDetail.configure.tools.toolTabs.all": "Все", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/sl-SI/agent-v-2.json b/web/i18n/sl-SI/agent-v-2.json index fd94156f044..74dec60a3e8 100644 --- a/web/i18n/sl-SI/agent-v-2.json +++ b/web/i18n/sl-SI/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Predogleda ni bilo mogoče naložiti.", "agentDetail.configure.files.preview.unsupported": "Ta datoteka ne podpira predogleda.", "agentDetail.configure.files.remove": "Odstrani {{name}}", - "agentDetail.configure.files.tip": "Datoteke, ki jih ta agent lahko uporablja pri izvajanju opravil.", + "agentDetail.configure.files.tip": "Agentu zagotovite primer, smernice ali preprosto nosilec informacij, ki je predolg za poziv. V pozivu ga izrecno navedite z /.", "agentDetail.configure.files.toggle": "Preklopi datoteke", "agentDetail.configure.files.treeLabel": "Datoteke agenta", "agentDetail.configure.files.upload.action": "Naloži", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Omemba", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Tukaj napišite navodila,", - "agentDetail.configure.prompt.tip": "Določite, kako naj ta agent razume vhodne podatke, kliče orodja in ustvarja izhode.", + "agentDetail.configure.prompt.tip": "Določite vlogo agenta in opišite njegovo tipično opravilo. Uporabite / za izrecno sklicevanje na veščine, datoteke, orodja in pridobivanje znanja.", "agentDetail.configure.publishBar.draft": "Osnutek", "agentDetail.configure.publishBar.publishUpdate": "Objavi posodobitev", "agentDetail.configure.publishBar.published": "Objavljeno", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Veščina", "agentDetail.configure.skills.label": "Veščine", "agentDetail.configure.skills.remove": "Odstrani {{name}}", - "agentDetail.configure.skills.tip": "Veščine, ki jih ta agent lahko uporablja pri izvajanju opravil.", + "agentDetail.configure.skills.richTip": "Opremite agenta z modularnimi zmožnostmi. Glejte dokumentacijo. V pozivu jih izrecno navedite z /.", + "agentDetail.configure.skills.tip": "Opremite agenta z modularnimi zmožnostmi. Glejte dokumentacijo. V pozivu jih izrecno navedite z /.", "agentDetail.configure.skills.toggle": "Preklopi veščine", "agentDetail.configure.skills.upload.action": "Naloži", "agentDetail.configure.skills.upload.browse": "prebrskaj", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Predhodna avtorizacija", "agentDetail.configure.tools.removeAction": "Odstrani {{name}}", "agentDetail.configure.tools.removeProvider": "Odstrani vsa orodja", - "agentDetail.configure.tools.tip": "Orodja, ki jih ta agent lahko kliče pri izvajanju opravil.", + "agentDetail.configure.tools.richTip": "Opremite agenta z vtičniki Dify. Glejte dokumentacijo. V pozivu jih izrecno navedite z /.\nLahko pa agentu prek klepeta Build vedno naročite, naj namesti in overi druga orodja (npr. MCPs in orodja CLI). Orodja, konfigurirana prek klepetov Build, se tukaj NE bodo prikazala, vendar bodo agentu še naprej na voljo. Glejte dokumentacijo.", + "agentDetail.configure.tools.tip": "Opremite agenta z vtičniki Dify. Glejte dokumentacijo. V pozivu jih izrecno navedite z /. Lahko pa agentu prek klepeta Build vedno naročite, naj namesti in overi druga orodja (npr. MCPs in orodja CLI). Orodja, konfigurirana prek klepetov Build, se tukaj NE bodo prikazala, vendar bodo agentu še naprej na voljo. Glejte dokumentacijo.", "agentDetail.configure.tools.toggle": "Preklopi orodja", "agentDetail.configure.tools.toolTabs.all": "Vse", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/th-TH/agent-v-2.json b/web/i18n/th-TH/agent-v-2.json index b2a68145c56..b7a1fc6b017 100644 --- a/web/i18n/th-TH/agent-v-2.json +++ b/web/i18n/th-TH/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "โหลดตัวอย่างไม่สำเร็จ", "agentDetail.configure.files.preview.unsupported": "ไฟล์นี้ไม่รองรับการแสดงตัวอย่าง", "agentDetail.configure.files.remove": "ลบ {{name}}", - "agentDetail.configure.files.tip": "ไฟล์ที่ตัวแทนนี้สามารถใช้ได้ขณะจัดการงาน", + "agentDetail.configure.files.tip": "มอบตัวอย่าง แนวทาง หรือข้อมูลที่ยาวเกินกว่าจะใส่ในพรอมป์ให้ตัวแทนของคุณ อ้างอิงอย่างชัดเจนด้วย / ในพรอมป์", "agentDetail.configure.files.toggle": "สลับไฟล์", "agentDetail.configure.files.treeLabel": "ไฟล์ตัวแทน", "agentDetail.configure.files.upload.action": "อัปโหลด", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "กล่าวถึง", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "เขียนคำสั่งที่นี่,", - "agentDetail.configure.prompt.tip": "กำหนดวิธีที่ตัวแทนนี้ตีความอินพุต เรียกใช้เครื่องมือ และสร้างเอาต์พุต", + "agentDetail.configure.prompt.tip": "กำหนดบทบาทของตัวแทนและอธิบายงานทั่วไป ใช้ / เพื่ออ้างอิง Skills, Files, Tools และ Knowledge Retrievals อย่างชัดเจน", "agentDetail.configure.publishBar.draft": "ฉบับร่าง", "agentDetail.configure.publishBar.publishUpdate": "เผยแพร่อัปเดต", "agentDetail.configure.publishBar.published": "เผยแพร่แล้ว", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "ทักษะ", "agentDetail.configure.skills.label": "ทักษะ", "agentDetail.configure.skills.remove": "ลบ {{name}}", - "agentDetail.configure.skills.tip": "ทักษะที่ตัวแทนนี้สามารถใช้ได้ขณะจัดการงาน", + "agentDetail.configure.skills.richTip": "เพิ่มความสามารถแบบโมดูลาร์ให้ตัวแทนของคุณ ดูเอกสาร อ้างอิงอย่างชัดเจนด้วย / ในพรอมป์", + "agentDetail.configure.skills.tip": "เพิ่มความสามารถแบบโมดูลาร์ให้ตัวแทนของคุณ ดูเอกสาร อ้างอิงอย่างชัดเจนด้วย / ในพรอมป์", "agentDetail.configure.skills.toggle": "สลับทักษะ", "agentDetail.configure.skills.upload.action": "อัปโหลด", "agentDetail.configure.skills.upload.browse": "เรียกดู", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "อนุญาตล่วงหน้า", "agentDetail.configure.tools.removeAction": "ลบ {{name}}", "agentDetail.configure.tools.removeProvider": "ลบเครื่องมือทั้งหมด", - "agentDetail.configure.tools.tip": "เครื่องมือที่ตัวแทนนี้สามารถเรียกใช้ได้ขณะจัดการงาน", + "agentDetail.configure.tools.richTip": "เพิ่มปลั๊กอินของ Dify ให้ตัวแทนของคุณ ดูเอกสาร อ้างอิงอย่างชัดเจนด้วย / ในพรอมป์\nอีกทางหนึ่ง คุณสามารถบอกให้ตัวแทนติดตั้งและยืนยันตัวตนเครื่องมืออื่น ๆ (เช่น MCPs และเครื่องมือ CLI) ผ่านแชต Build ได้เสมอ โปรดทราบว่าเครื่องมือที่กำหนดค่าผ่านแชต Build จะไม่แสดงที่นี่ แม้ว่าจะยังพร้อมใช้งานสำหรับตัวแทนของคุณต่อไป ดูเอกสาร", + "agentDetail.configure.tools.tip": "เพิ่มปลั๊กอินของ Dify ให้ตัวแทนของคุณ ดูเอกสาร อ้างอิงอย่างชัดเจนด้วย / ในพรอมป์ อีกทางหนึ่ง คุณสามารถบอกให้ตัวแทนติดตั้งและยืนยันตัวตนเครื่องมืออื่น ๆ (เช่น MCPs และเครื่องมือ CLI) ผ่านแชต Build ได้เสมอ โปรดทราบว่าเครื่องมือที่กำหนดค่าผ่านแชต Build จะไม่แสดงที่นี่ แม้ว่าจะยังพร้อมใช้งานสำหรับตัวแทนของคุณต่อไป ดูเอกสาร", "agentDetail.configure.tools.toggle": "สลับเครื่องมือ", "agentDetail.configure.tools.toolTabs.all": "ทั้งหมด", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/tr-TR/agent-v-2.json b/web/i18n/tr-TR/agent-v-2.json index 019755ccc58..74e9f676e1c 100644 --- a/web/i18n/tr-TR/agent-v-2.json +++ b/web/i18n/tr-TR/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Önizleme yüklenemedi.", "agentDetail.configure.files.preview.unsupported": "Bu dosya önizlemeyi desteklemiyor.", "agentDetail.configure.files.remove": "{{name}} kaldır", - "agentDetail.configure.files.tip": "Bu ajanın görevleri koordine ederken kullanabileceği dosyalar.", + "agentDetail.configure.files.tip": "Aracıya, istem için çok uzun olan herhangi bir örnek, yönerge veya bilgi taşıyıcısı sağlayın. İstemde / ile açıkça referans verin.", "agentDetail.configure.files.toggle": "Dosyaları değiştir", "agentDetail.configure.files.treeLabel": "Ajan dosyaları", "agentDetail.configure.files.upload.action": "Yükle", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Bahset", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Talimatları buraya yazın,", - "agentDetail.configure.prompt.tip": "Bu ajanın girdileri nasıl yorumlayacağını, araçları nasıl çağıracağını ve çıktıları nasıl üreteceğini tanımlayın.", + "agentDetail.configure.prompt.tip": "Aracının rolünü tanımlayın ve tipik görevini açıklayın. Skills, Files, Tools ve Knowledge Retrievals için açık referans vermek üzere / kullanın.", "agentDetail.configure.publishBar.draft": "Taslak", "agentDetail.configure.publishBar.publishUpdate": "Güncellemeyi yayınla", "agentDetail.configure.publishBar.published": "Yayınlandı", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Beceri", "agentDetail.configure.skills.label": "Beceriler", "agentDetail.configure.skills.remove": "{{name}} kaldır", - "agentDetail.configure.skills.tip": "Bu ajanın görevleri koordine ederken kullanabileceği beceriler.", + "agentDetail.configure.skills.richTip": "Aracınızı modüler yeteneklerle donatın. Belgelere bakın. İstemde / ile açıkça referans verin.", + "agentDetail.configure.skills.tip": "Aracınızı modüler yeteneklerle donatın. Belgelere bakın. İstemde / ile açıkça referans verin.", "agentDetail.configure.skills.toggle": "Becerileri değiştir", "agentDetail.configure.skills.upload.action": "Yükle", "agentDetail.configure.skills.upload.browse": "göz at", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Önceden yetkilendir", "agentDetail.configure.tools.removeAction": "{{name}} kaldır", "agentDetail.configure.tools.removeProvider": "Tüm araçları kaldır", - "agentDetail.configure.tools.tip": "Bu ajanın görevleri koordine ederken çağırabileceği araçlar.", + "agentDetail.configure.tools.richTip": "Aracınızı Dify eklentileriyle donatın. Belgelere bakın. İstemde / ile açıkça referans verin.\nAlternatif olarak, aracınıza bir Build sohbeti üzerinden başka araçları (örn. MCPs ve CLI araçları) yüklemesini ve kimlik doğrulamasını yapmasını her zaman söyleyebilirsiniz. Build sohbetleriyle yapılandırılan araçların burada görünmeyeceğini, ancak ileride aracınız için kullanılabilir olmaya devam edeceğini unutmayın. Belgelere bakın.", + "agentDetail.configure.tools.tip": "Aracınızı Dify eklentileriyle donatın. Belgelere bakın. İstemde / ile açıkça referans verin. Alternatif olarak, aracınıza bir Build sohbeti üzerinden başka araçları (örn. MCPs ve CLI araçları) yüklemesini ve kimlik doğrulamasını yapmasını her zaman söyleyebilirsiniz. Build sohbetleriyle yapılandırılan araçların burada görünmeyeceğini, ancak ileride aracınız için kullanılabilir olmaya devam edeceğini unutmayın. Belgelere bakın.", "agentDetail.configure.tools.toggle": "Araçları değiştir", "agentDetail.configure.tools.toolTabs.all": "Tümü", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/uk-UA/agent-v-2.json b/web/i18n/uk-UA/agent-v-2.json index 2e825cb06ef..05da4731df6 100644 --- a/web/i18n/uk-UA/agent-v-2.json +++ b/web/i18n/uk-UA/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Не вдалося завантажити перегляд.", "agentDetail.configure.files.preview.unsupported": "Попередній перегляд цього файлу не підтримується.", "agentDetail.configure.files.remove": "Видалити {{name}}", - "agentDetail.configure.files.tip": "Файли, які цей агент може використовувати під час оркестрації задач.", + "agentDetail.configure.files.tip": "Надайте агенту будь-який приклад, інструкцію або просто носій інформації, який занадто довгий для промпта. Явно посилайтеся на нього через / у промпті.", "agentDetail.configure.files.toggle": "Перемкнути файли", "agentDetail.configure.files.treeLabel": "Файли агента", "agentDetail.configure.files.upload.action": "Завантажити", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Згадати", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Напишіть інструкції тут,", - "agentDetail.configure.prompt.tip": "Визначте, як цей агент має інтерпретувати вхідні дані, викликати інструменти та формувати вихідні дані.", + "agentDetail.configure.prompt.tip": "Визначте роль агента й опишіть його типове завдання. Використовуйте /, щоб явно посилатися на навички, файли, інструменти та пошук знань.", "agentDetail.configure.publishBar.draft": "Чернетка", "agentDetail.configure.publishBar.publishUpdate": "Опублікувати оновлення", "agentDetail.configure.publishBar.published": "Опубліковано", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Навичка", "agentDetail.configure.skills.label": "Навички", "agentDetail.configure.skills.remove": "Видалити {{name}}", - "agentDetail.configure.skills.tip": "Навички, які цей агент може використовувати під час оркестрації задач.", + "agentDetail.configure.skills.richTip": "Оснастіть агента модульними можливостями. Див. документацію. Явно посилайтеся на них через / у промпті.", + "agentDetail.configure.skills.tip": "Оснастіть агента модульними можливостями. Див. документацію. Явно посилайтеся на них через / у промпті.", "agentDetail.configure.skills.toggle": "Перемкнути навички", "agentDetail.configure.skills.upload.action": "Завантажити", "agentDetail.configure.skills.upload.browse": "огляд", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Попередня авторизація", "agentDetail.configure.tools.removeAction": "Видалити {{name}}", "agentDetail.configure.tools.removeProvider": "Видалити всі інструменти", - "agentDetail.configure.tools.tip": "Інструменти, які цей агент може викликати під час оркестрації задач.", + "agentDetail.configure.tools.richTip": "Оснастіть агента плагінами Dify. Див. документацію. Явно посилайтеся на них через / у промпті.\nКрім того, ви завжди можете сказати агенту встановити й автентифікувати інші інструменти (наприклад, MCPs та CLI-інструменти) через Build-чат. Зверніть увагу: інструменти, налаштовані через Build-чати, НЕ відображатимуться тут, хоча й надалі будуть доступні вашому агенту. Див. документацію.", + "agentDetail.configure.tools.tip": "Оснастіть агента плагінами Dify. Див. документацію. Явно посилайтеся на них через / у промпті. Крім того, ви завжди можете сказати агенту встановити й автентифікувати інші інструменти (наприклад, MCPs та CLI-інструменти) через Build-чат. Зверніть увагу: інструменти, налаштовані через Build-чати, НЕ відображатимуться тут, хоча й надалі будуть доступні вашому агенту. Див. документацію.", "agentDetail.configure.tools.toggle": "Перемкнути інструменти", "agentDetail.configure.tools.toolTabs.all": "Усі", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/vi-VN/agent-v-2.json b/web/i18n/vi-VN/agent-v-2.json index 82abe790510..6002b43b286 100644 --- a/web/i18n/vi-VN/agent-v-2.json +++ b/web/i18n/vi-VN/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "Tải xem trước thất bại.", "agentDetail.configure.files.preview.unsupported": "Tệp này không hỗ trợ xem trước.", "agentDetail.configure.files.remove": "Xóa {{name}}", - "agentDetail.configure.files.tip": "Các tệp mà tác nhân này có thể sử dụng khi điều phối tác vụ.", + "agentDetail.configure.files.tip": "Cung cấp cho tác nhân của bạn bất kỳ ví dụ, hướng dẫn hoặc đơn giản là một nguồn thông tin quá dài để đưa vào prompt. Tham chiếu rõ ràng bằng / trong Prompt.", "agentDetail.configure.files.toggle": "Bật/tắt tệp", "agentDetail.configure.files.treeLabel": "Tệp tác nhân", "agentDetail.configure.files.upload.action": "Tải lên", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "Đề cập", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "Viết hướng dẫn tại đây,", - "agentDetail.configure.prompt.tip": "Xác định cách tác nhân này nên hiểu đầu vào, gọi công cụ và tạo đầu ra.", + "agentDetail.configure.prompt.tip": "Xác định vai trò của tác nhân và mô tả nhiệm vụ điển hình của nó. Dùng / để tham chiếu rõ ràng đến Skills, Files, Tools và Knowledge Retrievals.", "agentDetail.configure.publishBar.draft": "Bản nháp", "agentDetail.configure.publishBar.publishUpdate": "Xuất bản cập nhật", "agentDetail.configure.publishBar.published": "Đã xuất bản", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "Kỹ năng", "agentDetail.configure.skills.label": "Kỹ năng", "agentDetail.configure.skills.remove": "Xóa {{name}}", - "agentDetail.configure.skills.tip": "Các kỹ năng mà tác nhân này có thể sử dụng khi điều phối tác vụ.", + "agentDetail.configure.skills.richTip": "Trang bị cho tác nhân các năng lực dạng mô-đun. Tham khảo tài liệu. Tham chiếu rõ ràng bằng / trong Prompt.", + "agentDetail.configure.skills.tip": "Trang bị cho tác nhân các năng lực dạng mô-đun. Tham khảo tài liệu. Tham chiếu rõ ràng bằng / trong Prompt.", "agentDetail.configure.skills.toggle": "Bật/tắt kỹ năng", "agentDetail.configure.skills.upload.action": "Tải lên", "agentDetail.configure.skills.upload.browse": "duyệt", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "Cấp quyền trước", "agentDetail.configure.tools.removeAction": "Xóa {{name}}", "agentDetail.configure.tools.removeProvider": "Xóa tất cả công cụ", - "agentDetail.configure.tools.tip": "Các công cụ mà tác nhân này có thể gọi khi điều phối tác vụ.", + "agentDetail.configure.tools.richTip": "Trang bị cho tác nhân các plugin của Dify. Tham khảo tài liệu. Tham chiếu rõ ràng bằng / trong Prompt.\nNgoài ra, bạn luôn có thể yêu cầu tác nhân cài đặt và xác thực các công cụ khác (ví dụ: MCPs và công cụ CLI) thông qua Build chat. Lưu ý rằng các công cụ được cấu hình qua Build chats sẽ KHÔNG hiển thị ở đây, mặc dù chúng vẫn sẽ khả dụng cho tác nhân của bạn về sau. Tham khảo tài liệu.", + "agentDetail.configure.tools.tip": "Trang bị cho tác nhân các plugin của Dify. Tham khảo tài liệu. Tham chiếu rõ ràng bằng / trong Prompt. Ngoài ra, bạn luôn có thể yêu cầu tác nhân cài đặt và xác thực các công cụ khác (ví dụ: MCPs và công cụ CLI) thông qua Build chat. Lưu ý rằng các công cụ được cấu hình qua Build chats sẽ KHÔNG hiển thị ở đây, mặc dù chúng vẫn sẽ khả dụng cho tác nhân của bạn về sau. Tham khảo tài liệu.", "agentDetail.configure.tools.toggle": "Bật/tắt công cụ", "agentDetail.configure.tools.toolTabs.all": "Tất cả", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/zh-Hans/agent-v-2.json b/web/i18n/zh-Hans/agent-v-2.json index ecaa3da2313..b29ed27d048 100644 --- a/web/i18n/zh-Hans/agent-v-2.json +++ b/web/i18n/zh-Hans/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "预览加载失败。", "agentDetail.configure.files.preview.unsupported": "该文件不支持预览。", "agentDetail.configure.files.remove": "移除 {{name}}", - "agentDetail.configure.files.tip": "此智能体在编排任务时可使用的文件。", + "agentDetail.configure.files.tip": "为智能体提供示例、指南,或任何过长而不适合放入提示词的信息载体。请在提示词中使用 / 显式引用。", "agentDetail.configure.files.toggle": "展开或收起文件", "agentDetail.configure.files.treeLabel": "智能体文件", "agentDetail.configure.files.upload.action": "上传", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "提及", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "在此编写指令,", - "agentDetail.configure.prompt.tip": "定义这个智能体如何理解输入、调用工具并生成输出。", + "agentDetail.configure.prompt.tip": "定义智能体的角色,并描述它的典型任务。使用 / 显式引用技能、文件、工具和知识检索。", "agentDetail.configure.publishBar.draft": "草稿", "agentDetail.configure.publishBar.publishUpdate": "发布更新", "agentDetail.configure.publishBar.published": "已发布", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "技能", "agentDetail.configure.skills.label": "技能", "agentDetail.configure.skills.remove": "移除 {{name}}", - "agentDetail.configure.skills.tip": "此智能体在编排任务时可使用的技能。", + "agentDetail.configure.skills.richTip": "为智能体配备模块化能力。请参考文档。请在提示词中使用 / 显式引用。", + "agentDetail.configure.skills.tip": "为智能体配备模块化能力。请参考文档。请在提示词中使用 / 显式引用。", "agentDetail.configure.skills.toggle": "展开或收起技能", "agentDetail.configure.skills.upload.action": "上传", "agentDetail.configure.skills.upload.browse": "选择", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "预授权", "agentDetail.configure.tools.removeAction": "移除 {{name}}", "agentDetail.configure.tools.removeProvider": "移除所有工具", - "agentDetail.configure.tools.tip": "此智能体在编排任务时可调用的工具。", + "agentDetail.configure.tools.richTip": "为智能体配备 Dify 插件。请参考文档。请在提示词中使用 / 显式引用。\n或者,你也可以随时通过 Build 对话让智能体安装并认证其他工具(例如 MCP 和 CLI 工具)。注意,通过 Build 对话配置的工具不会显示在这里,但后续仍可供你的智能体使用。请参考文档。", + "agentDetail.configure.tools.tip": "为智能体配备 Dify 插件。请参考文档。请在提示词中使用 / 显式引用。或者,你也可以随时通过 Build 对话让智能体安装并认证其他工具(例如 MCP 和 CLI 工具)。注意,通过 Build 对话配置的工具不会显示在这里,但后续仍可供你的智能体使用。请参考文档。", "agentDetail.configure.tools.toggle": "展开或收起工具", "agentDetail.configure.tools.toolTabs.all": "全部", "agentDetail.configure.tools.toolTabs.cli": "CLI", diff --git a/web/i18n/zh-Hant/agent-v-2.json b/web/i18n/zh-Hant/agent-v-2.json index 646822e0c64..147b377ba6d 100644 --- a/web/i18n/zh-Hant/agent-v-2.json +++ b/web/i18n/zh-Hant/agent-v-2.json @@ -87,7 +87,7 @@ "agentDetail.configure.files.preview.failed": "預覽載入失敗。", "agentDetail.configure.files.preview.unsupported": "此檔案不支援預覽。", "agentDetail.configure.files.remove": "移除 {{name}}", - "agentDetail.configure.files.tip": "此智能體在編排任務時可使用的檔案。", + "agentDetail.configure.files.tip": "為智能體提供範例、指南,或任何過長而不適合放入提示詞的資訊載體。請在提示詞中使用 / 明確引用。", "agentDetail.configure.files.toggle": "展開或收合檔案", "agentDetail.configure.files.treeLabel": "智能體檔案", "agentDetail.configure.files.upload.action": "上傳", @@ -153,7 +153,7 @@ "agentDetail.configure.prompt.mention.label": "提及", "agentDetail.configure.prompt.mention.priyaRamanathan": "Priya Ramanathan", "agentDetail.configure.prompt.placeholder": "在此編寫指令,", - "agentDetail.configure.prompt.tip": "定義此智能體如何理解輸入、呼叫工具並產生輸出。", + "agentDetail.configure.prompt.tip": "定義智能體的角色,並描述它的典型任務。使用 / 明確引用技能、檔案、工具和知識檢索。", "agentDetail.configure.publishBar.draft": "草稿", "agentDetail.configure.publishBar.publishUpdate": "發佈更新", "agentDetail.configure.publishBar.published": "已發佈", @@ -185,7 +185,8 @@ "agentDetail.configure.skills.itemType": "技能", "agentDetail.configure.skills.label": "技能", "agentDetail.configure.skills.remove": "移除 {{name}}", - "agentDetail.configure.skills.tip": "此智能體在編排任務時可使用的技能。", + "agentDetail.configure.skills.richTip": "為智能體配備模組化能力。請參考文件。請在提示詞中使用 / 明確引用。", + "agentDetail.configure.skills.tip": "為智能體配備模組化能力。請參考文件。請在提示詞中使用 / 明確引用。", "agentDetail.configure.skills.toggle": "展開或收合技能", "agentDetail.configure.skills.upload.action": "上傳", "agentDetail.configure.skills.upload.browse": "選擇", @@ -229,7 +230,8 @@ "agentDetail.configure.tools.preAuthorize": "預先授權", "agentDetail.configure.tools.removeAction": "移除 {{name}}", "agentDetail.configure.tools.removeProvider": "移除所有工具", - "agentDetail.configure.tools.tip": "此智能體在編排任務時可呼叫的工具。", + "agentDetail.configure.tools.richTip": "為智能體配備 Dify 外掛。請參考文件。請在提示詞中使用 / 明確引用。\n或者,你也可以隨時透過 Build 對話讓智能體安裝並驗證其他工具(例如 MCP 和 CLI 工具)。注意,透過 Build 對話設定的工具不會顯示在這裡,但後續仍可供你的智能體使用。請參考文件。", + "agentDetail.configure.tools.tip": "為智能體配備 Dify 外掛。請參考文件。請在提示詞中使用 / 明確引用。或者,你也可以隨時透過 Build 對話讓智能體安裝並驗證其他工具(例如 MCP 和 CLI 工具)。注意,透過 Build 對話設定的工具不會顯示在這裡,但後續仍可供你的智能體使用。請參考文件。", "agentDetail.configure.tools.toggle": "展開或收合工具", "agentDetail.configure.tools.toolTabs.all": "全部", "agentDetail.configure.tools.toolTabs.cli": "CLI",