+
+
diff --git a/content/docs/chatflow/index.mdx b/content/docs/chatflow/index.mdx
new file mode 100644
index 0000000..358bd6c
--- /dev/null
+++ b/content/docs/chatflow/index.mdx
@@ -0,0 +1,37 @@
+---
+title: Dify Chatflow
+description: Learn about developing with Dify Chatflow
+enableComments: true
+author: "Chase"
+github_username: "ChasePassion"
+---
+
+## 🤔 Chat Assistant vs Chatflow: What's the Difference?
+
+On the Dify platform, you can build various types of AI applications. When we talk about conversational AI, we often encounter two modes: **Chat Assistants** (typically basic Q&A or LLM-based bots) and **Chatflows** (orchestrated dialog flows). So, what's the difference?
+
+A practical example is a hospital guide system. In a Chatflow, you can guide users to select one of several options, switch scenes, and retrieve knowledge from specific databases. This can significantly improve answer accuracy and reduce system load in complex scenarios like hospitals.
+
+🌰 Key Differences at a Glance:
+
+| Feature | Chat Assistant | Chatflow |
+| ------------- | ------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
+| Main Purpose | Quickly implement Q&A, text generation, etc. | Build dialogue applications with complex logic, multi-turn interaction, and user guidance |
+| Interaction | Single or simple multi-turn conversations | Emphasizes multi-turn, context-aware, and controllable dialog flows |
+| Orchestration | Limited or no visual orchestration, mostly Prompt + RAG | Powerful visual orchestration using node linking, with branching, variables, tool calls |
+| State | Relies on LLM’s short-term memory or simple context | Built-in memory allows passing and managing dialog history across nodes |
+| Use Cases | Basic Q&A bots, content drafting, rapid prototyping | Smart customer service, task-oriented bots, semantic understanding, personalized suggestions, service integration |
+| Unique Nodes | Few special orchestration nodes | `Answer` (stream output), special input variables like `sys.query`, `sys.conversation_id` |
+| Extensions | Basic features | Supports greetings, follow-up suggestions, TTS, advanced file handling, content moderation, etc. |
+
+## Get Started
+
+### Easy Orchestration: Build Your First Smart Chatflow
+
+
+
+
+ Learn how to use Dify's visual interface to create a simple dialog bot.
+