diff --git a/cn/documentation/pages/getting-started/introduction.mdx b/cn/documentation/pages/getting-started/introduction.mdx
index 468ec1aa..22034b4e 100644
--- a/cn/documentation/pages/getting-started/introduction.mdx
+++ b/cn/documentation/pages/getting-started/introduction.mdx
@@ -11,14 +11,14 @@ Dify 是一个用于构建 AI 工作流的开源平台。通过在可视化画

-
- 几分钟内开始构建强大的应用
+
+ 数分钟内开始构建强大的应用
-
+
核心 Dify 构建模块解释
-
- 在你的笔记本电脑/服务器上安装 Dify 的指南
+
+ 在你的笔记本电脑/服务器上安装 Dify
与社区交流心得
@@ -26,7 +26,7 @@ Dify 是一个用于构建 AI 工作流的开源平台。通过在可视化画
查看过往版本的更新内容
-
+
Dify 用例示例演练
diff --git a/cn/documentation/pages/tutorials/article-reader.mdx b/cn/documentation/pages/tutorials/article-reader.mdx
index 7cee4290..7deb7926 100644
--- a/cn/documentation/pages/tutorials/article-reader.mdx
+++ b/cn/documentation/pages/tutorials/article-reader.mdx
@@ -2,8 +2,6 @@
title: 使用文件上传搭建文章理解助手
---
-> 作者:Steven Lynn。Dify Technical Writer。
-
在 Dify ,你可以使用知识库工具让 Agent 从大量的文本内容中获取准确的信息。然而,很多情况下需要理解的本地文件并不是很大,不至于用上知识库。这种情况下可以使用文件上传功能直接把本地文件作为上下文给 LLM 理解。
本次实验中,我们将以文章理解助手为案例。这个文章理解助手将会根据上传的文档进行提问,协助用户带着问题去阅读论文等材料。
diff --git a/cn/documentation/pages/tutorials/build-ai-image-generation-app.mdx b/cn/documentation/pages/tutorials/build-ai-image-generation-app.mdx
index f580ace4..d2612b6e 100644
--- a/cn/documentation/pages/tutorials/build-ai-image-generation-app.mdx
+++ b/cn/documentation/pages/tutorials/build-ai-image-generation-app.mdx
@@ -2,8 +2,6 @@
title: 如何搭建 AI 图片生成应用
---
-> 作者:Steven Lynn。Dify Technical Writer。
-
随着图像生成技术的兴起,涌现了许多优秀的图像生成产品,比如 Dall-e、Flux、Stable Diffusion 等。
本文将使用图像生成模型,指导你使用 Dify 快速开发一个 AI 图片生成应用。
diff --git a/cn/documentation/pages/tutorials/customer-service-bot.mdx b/cn/documentation/pages/tutorials/customer-service-bot.mdx
index 4e3f70c5..aa8a7e2b 100644
--- a/cn/documentation/pages/tutorials/customer-service-bot.mdx
+++ b/cn/documentation/pages/tutorials/customer-service-bot.mdx
@@ -2,9 +2,6 @@
title: 使用知识库搭建智能客服机器人
---
-
-> 作者:Steven Lynn。Dify Technical Writer。
-
上一个实验中,我们学习了文件上传的基本用法。然而,当我们需要读取的文本超出 LLM 的上下文窗口时,就需要用到知识库了。
> **什么是上下文?**
diff --git a/cn/documentation/pages/tutorials/twitter-chatflow.mdx b/cn/documentation/pages/tutorials/twitter-chatflow.mdx
index bdbe8e76..6d8d8bd0 100644
--- a/cn/documentation/pages/tutorials/twitter-chatflow.mdx
+++ b/cn/documentation/pages/tutorials/twitter-chatflow.mdx
@@ -2,9 +2,6 @@
title: ChatFlow 实战:搭建 Twitter 账号分析助手
---
-
-> 作者: Steven Lynn。 Dify Technical Writer。
-
## 简介
Dify 内置了一些网络爬虫工具例如 Jina ,它可以将网页转换为 LLM 可以读取的 markdown 格式。
diff --git a/docs.json b/docs.json
index fd4c1e60..0a197b2d 100644
--- a/docs.json
+++ b/docs.json
@@ -632,6 +632,7 @@
},
{
"dropdown": "开发插件",
+ "icon": "code-pull-request",
"groups": [
{
"group": "概念与入门",
@@ -1000,6 +1001,7 @@
},
{
"dropdown": "プラグイン開発",
+ "icon": "code-pull-request",
"groups": [
{
"group": "概念と概要",
diff --git a/en/documentation/pages/getting-started/introduction.mdx b/en/documentation/pages/getting-started/introduction.mdx
index 303466d8..7907f884 100644
--- a/en/documentation/pages/getting-started/introduction.mdx
+++ b/en/documentation/pages/getting-started/introduction.mdx
@@ -15,7 +15,7 @@ Dify is an open-source platform for building agentic workflows. It lets you defi
Core Dify building blocks explained
-
+
Deploy Dify on your own laptop / server
@@ -24,7 +24,7 @@ Dify is an open-source platform for building agentic workflows. It lets you defi
What's changed over past releases
-
+
Example Dify use case walkthroughs
diff --git a/en/documentation/pages/tutorials/article-reader.mdx b/en/documentation/pages/tutorials/article-reader.mdx
index 6b3b32da..57d1be9d 100644
--- a/en/documentation/pages/tutorials/article-reader.mdx
+++ b/en/documentation/pages/tutorials/article-reader.mdx
@@ -2,9 +2,6 @@
title: Article Reader Using File Upload
---
-
-> Author: Steven Lynn. Dify Technical Writer.
-
In Dify, you can use the knowledge base to allow agent to obtain accurate information from a large amount of text content. However, in many cases, the local files provided are not large enough to warrant the use of the knowledge base. In such cases, you can use the file upload feature to directly provide local files as context for the LLM to read.
In this experiment, we will build the article reader as a case study. This assistant will ask questions based on the uploaded document, helping users to read papers and other materials with those questions in mind.
diff --git a/en/documentation/pages/tutorials/build-ai-image-generation-app.mdx b/en/documentation/pages/tutorials/build-ai-image-generation-app.mdx
index 8519c57b..d6437b70 100644
--- a/en/documentation/pages/tutorials/build-ai-image-generation-app.mdx
+++ b/en/documentation/pages/tutorials/build-ai-image-generation-app.mdx
@@ -2,8 +2,6 @@
title: AI Image Generation App
---
-> Author: Steven Lynn. Dify Technical Writer.
-
With the rise of image generation, many excellent image generation products have emerged, such as Dall-e, Flux, Stable Diffusion, etc.
In this article, you will learn how to develop an AI image generation app using Dify.
diff --git a/en/documentation/pages/tutorials/customer-service-bot.mdx b/en/documentation/pages/tutorials/customer-service-bot.mdx
index a45baa41..1a211287 100644
--- a/en/documentation/pages/tutorials/customer-service-bot.mdx
+++ b/en/documentation/pages/tutorials/customer-service-bot.mdx
@@ -2,9 +2,6 @@
title: Customer Service Bot With Knowledge Base
---
-
-> Author: Steven Lynn, Dify Technical Writer
-
In the last experiment, we learned the basic usage of file uploads. However, when the text we need to read exceeds the LLM's context window, we need to use a knowledge base.
> **What is context?**
diff --git a/jp/documentation/pages/getting-started/introduction.mdx b/jp/documentation/pages/getting-started/introduction.mdx
index 21be1708..0c7bceb1 100644
--- a/jp/documentation/pages/getting-started/introduction.mdx
+++ b/jp/documentation/pages/getting-started/introduction.mdx
@@ -11,13 +11,13 @@ Difyは、AIワークフローを構築するためのオープンソースプ

-
+
数分で強力なアプリの構築を開始
-
+
Difyの核となる構成要素の説明
-
+
自分のノートパソコン/サーバーにDifyをインストールするガイド
@@ -26,7 +26,7 @@ Difyは、AIワークフローを構築するためのオープンソースプ
過去のリリースでの変更内容
-
+
Difyのユースケース例のウォークスルー
diff --git a/jp/documentation/pages/tutorials/article-reader.mdx b/jp/documentation/pages/tutorials/article-reader.mdx
index be89acaf..b1337a5e 100644
--- a/jp/documentation/pages/tutorials/article-reader.mdx
+++ b/jp/documentation/pages/tutorials/article-reader.mdx
@@ -2,9 +2,6 @@
title: ファイルアップロードを使用した記事理解アシスタントの構築方法
---
-
-> 著者: Steven Lynn。Difyのテクニカルライター。
-
Difyでは、ナレッジベースツールを利用して、エージェントが大量のテキストコンテンツから正確な情報を取得することが可能です。しかし、多くの場合、理解する必要があるローカルファイルはそれほど大きくないため、ナレッジベースを使用する必要はありません。このような場合には、ファイルアップロード機能を活用して、LLMがローカルファイルをコンテキストとして理解できるようにします。
本実験では、資料理解アシスタントを例に取り上げます。このアシスタントは、アップロードされたドキュメントに基づいてユーザーに質問を行い、論文などの資料を読みながらの理解をサポートします。
diff --git a/jp/documentation/pages/tutorials/build-ai-image-generation-app.mdx b/jp/documentation/pages/tutorials/build-ai-image-generation-app.mdx
index 182e1c43..8dbd179e 100644
--- a/jp/documentation/pages/tutorials/build-ai-image-generation-app.mdx
+++ b/jp/documentation/pages/tutorials/build-ai-image-generation-app.mdx
@@ -2,9 +2,6 @@
title: ゼロからAI画像生成アプリの構築方法
---
-
-> 著者:Steven Lynn. Difyのテクニカルライター
-
画像生成技術の発展に伴い、Dall-e、Flux、Stable Diffusionなどの優れた画像生成ツールが多数登場しています。
本記事では、Difyを使用してAI画像生成アプリを開発する方法について学びます。
diff --git a/jp/documentation/pages/tutorials/customer-service-bot.mdx b/jp/documentation/pages/tutorials/customer-service-bot.mdx
index 20c97f53..98b3f404 100644
--- a/jp/documentation/pages/tutorials/customer-service-bot.mdx
+++ b/jp/documentation/pages/tutorials/customer-service-bot.mdx
@@ -2,9 +2,6 @@
title: 知識ベースを使用したカスタマーサービスボット
---
-
-> 著者:Steven Lynn、Difyテクニカルライター
-
前回の実験では、ファイルアップロードの基本的な使い方を学びました。しかし、読み込む必要のあるテキストがLLMのコンテキストウィンドウを超える場合、知識ベースを使用する必要があります。
> **コンテキストとは?**
diff --git a/jp/documentation/pages/tutorials/twitter-chatflow.mdx b/jp/documentation/pages/tutorials/twitter-chatflow.mdx
index 86061a3a..2bd5e83a 100644
--- a/jp/documentation/pages/tutorials/twitter-chatflow.mdx
+++ b/jp/documentation/pages/tutorials/twitter-chatflow.mdx
@@ -2,8 +2,6 @@
title: チャットストリームエージェントを使用した Twitter アカウントの分析方法
---
-> 著者:Steven Lynn. Difyのテクニカルライター
-
## はじめに
Difyでは、WebページをLLM(大規模言語モデル)が読み取れるMarkdown形式に変換するためのクローラーツール、例えばJinaを利用できます。