diff --git a/web/app/components/develop/template/template_chat.en.mdx b/web/app/components/develop/template/template_chat.en.mdx
index ca400d1438a7c8..d4d1e8e4b69093 100644
--- a/web/app/components/develop/template/template_chat.en.mdx
+++ b/web/app/components/develop/template/template_chat.en.mdx
@@ -427,6 +427,53 @@ Chat applications support session persistence, allowing previous chat history to
---
+
+
+
+ Get next questions suggestions for the current message
+
+ ### Path Params
+
+
+
+ Message ID
+
+
+
+
+
+
+
+ ```bash {{ title: 'cURL' }}
+ curl --location --request GET '${props.appDetail.api_base_url}/messages/{message_id}/suggested' \
+ --header 'Authorization: Bearer ENTER-YOUR-SECRET-KEY' \
+ --header 'Content-Type: application/json' \
+ ```
+
+
+
+
+ ```json {{ title: 'Response' }}
+ {
+ "result": "success",
+ "data": [
+ "a",
+ "b",
+ "c"
+ ]
+ }
+ ```
+
+
+
+
+---
+
+
+
+ 获取下一轮建议问题列表。
+
+ ### Path Params
+
+
+
+ Message ID
+
+
+
+
+
+
+
+ ```bash {{ title: 'cURL' }}
+ curl --location --request GET '${props.appDetail.api_base_url}/messages/{message_id}/suggested' \
+ --header 'Authorization: Bearer ENTER-YOUR-SECRET-KEY' \
+ --header 'Content-Type: application/json' \
+ ```
+
+
+
+
+ ```json {{ title: 'Response' }}
+ {
+ "result": "success",
+ "data": [
+ "a",
+ "b",
+ "c"
+ ]
+ }
+ ```
+
+
+
+
+---
+
+---
+