diff --git a/web/app/components/develop/template/template.en.mdx b/web/app/components/develop/template/template.en.mdx
index 43dc226107..8212e800f7 100755
--- a/web/app/components/develop/template/template.en.mdx
+++ b/web/app/components/develop/template/template.en.mdx
@@ -647,3 +647,62 @@ The text generation application offers non-session support and is ideal for tran
+---
+
+
+
+
+ Used to get the WebApp settings of the application.
+ ### Response
+ - `title` (string) WebApp name
+ - `chat_color_theme` (string) Chat color theme, in hex format
+ - `chat_color_theme_inverted` (bool) Whether the chat color theme is inverted
+ - `icon_type` (string) Icon type, `emoji` - emoji, `image` - picture
+ - `icon` (string) Icon. If it's `emoji` type, it's an emoji symbol; if it's `image` type, it's an image URL.
+ - `icon_background` (string) Background color in hex format
+ - `icon_url` (string) Icon URL
+ - `description` (string) Description
+ - `copyright` (string) Copyright information
+ - `privacy_policy` (string) Privacy policy link
+ - `custom_disclaimer` (string) Custom disclaimer
+ - `default_language` (string) Default language
+ - `show_workflow_steps` (bool) Whether to show workflow details
+ - `use_icon_as_answer_icon` (bool) Whether to replace 🤖 in chat with the WebApp icon
+
+
+
+ ```bash {{ title: 'cURL' }}
+ curl -X GET '${props.appDetail.api_base_url}/site' \
+ -H 'Authorization: Bearer {api_key}'
+ ```
+
+
+
+
+ ```json {{ title: 'Response' }}
+ {
+ "title": "My App",
+ "chat_color_theme": "#ff4a4a",
+ "chat_color_theme_inverted": false,
+ "icon_type": "emoji",
+ "icon": "😄",
+ "icon_background": "#FFEAD5",
+ "icon_url": null,
+ "description": "This is my app.",
+ "copyright": "all rights reserved",
+ "privacy_policy": "",
+ "custom_disclaimer": "All generated by AI",
+ "default_language": "en-US",
+ "show_workflow_steps": false,
+ "use_icon_as_answer_icon": false,
+ }
+ ```
+
+
+
+___
diff --git a/web/app/components/develop/template/template.ja.mdx b/web/app/components/develop/template/template.ja.mdx
index 2c676e392f..5061792caf 100755
--- a/web/app/components/develop/template/template.ja.mdx
+++ b/web/app/components/develop/template/template.ja.mdx
@@ -645,3 +645,62 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
+---
+
+
+
+
+ アプリのWebApp設定を取得するために使用します。
+ ### レスポンス
+ - `title` (string) WebApp名
+ - `chat_color_theme` (string) チャットの色テーマ、16進数形式
+ - `chat_color_theme_inverted` (bool) チャットの色テーマを反転するかどうか
+ - `icon_type` (string) アイコンタイプ、`emoji`-絵文字、`image`-画像
+ - `icon` (string) アイコン。`emoji`タイプの場合は絵文字、`image`タイプの場合は画像URL
+ - `icon_background` (string) 16進数形式の背景色
+ - `icon_url` (string) アイコンのURL
+ - `description` (string) 説明
+ - `copyright` (string) 著作権情報
+ - `privacy_policy` (string) プライバシーポリシーのリンク
+ - `custom_disclaimer` (string) カスタム免責事項
+ - `default_language` (string) デフォルト言語
+ - `show_workflow_steps` (bool) ワークフローの詳細を表示するかどうか
+ - `use_icon_as_answer_icon` (bool) WebAppのアイコンをチャット内の🤖に置き換えるかどうか
+
+
+
+ ```bash {{ title: 'cURL' }}
+ curl -X GET '${props.appDetail.api_base_url}/site' \
+ -H 'Authorization: Bearer {api_key}'
+ ```
+
+
+
+
+ ```json {{ title: 'Response' }}
+ {
+ "title": "My App",
+ "chat_color_theme": "#ff4a4a",
+ "chat_color_theme_inverted": false,
+ "icon_type": "emoji",
+ "icon": "😄",
+ "icon_background": "#FFEAD5",
+ "icon_url": null,
+ "description": "This is my app.",
+ "copyright": "all rights reserved",
+ "privacy_policy": "",
+ "custom_disclaimer": "All generated by AI",
+ "default_language": "en-US",
+ "show_workflow_steps": false,
+ "use_icon_as_answer_icon": false,
+ }
+ ```
+
+
+
+___
diff --git a/web/app/components/develop/template/template.zh.mdx b/web/app/components/develop/template/template.zh.mdx
index 61739a7178..df83684c06 100755
--- a/web/app/components/develop/template/template.zh.mdx
+++ b/web/app/components/develop/template/template.zh.mdx
@@ -507,7 +507,6 @@ import { Row, Col, Properties, Property, Heading, SubProperty } from '../md.tsx'
-
---
---
----
-
---
+
+
+
+ Used to get the WebApp settings of the application.
+ ### Response
+ - `title` (string) WebApp name
+ - `chat_color_theme` (string) Chat color theme, in hex format
+ - `chat_color_theme_inverted` (bool) Whether the chat color theme is inverted
+ - `icon_type` (string) Icon type, `emoji` - emoji, `image` - picture
+ - `icon` (string) Icon. If it's `emoji` type, it's an emoji symbol; if it's `image` type, it's an image URL
+ - `icon_background` (string) Background color in hex format
+ - `icon_url` (string) Icon URL
+ - `description` (string) Description
+ - `copyright` (string) Copyright information
+ - `privacy_policy` (string) Privacy policy link
+ - `custom_disclaimer` (string) Custom disclaimer
+ - `default_language` (string) Default language
+ - `show_workflow_steps` (bool) Whether to show workflow details
+ - `use_icon_as_answer_icon` (bool) Whether to replace 🤖 in chat with the WebApp icon
+
+
+
+ ```bash {{ title: 'cURL' }}
+ curl -X GET '${props.appDetail.api_base_url}/site' \
+ -H 'Authorization: Bearer {api_key}'
+ ```
+
+
+
+
+ ```json {{ title: 'Response' }}
+ {
+ "title": "My App",
+ "chat_color_theme": "#ff4a4a",
+ "chat_color_theme_inverted": false,
+ "icon_type": "emoji",
+ "icon": "😄",
+ "icon_background": "#FFEAD5",
+ "icon_url": null,
+ "description": "This is my app.",
+ "copyright": "all rights reserved",
+ "privacy_policy": "",
+ "custom_disclaimer": "All generated by AI",
+ "default_language": "en-US",
+ "show_workflow_steps": false,
+ "use_icon_as_answer_icon": false,
+ }
+ ```
+
+
+
+___
+
+
+---
+
+
+
+
+ アプリのWebApp設定を取得するために使用します。
+ ### 応答
+ - `title` (string) WebApp名
+ - `chat_color_theme` (string) チャットの色テーマ、16進数形式
+ - `chat_color_theme_inverted` (bool) チャットの色テーマを反転するかどうか
+ - `icon_type` (string) アイコンタイプ、`emoji`-絵文字、`image`-画像
+ - `icon` (string) アイコン。`emoji`タイプの場合は絵文字、`image`タイプの場合は画像URL
+ - `icon_background` (string) 16進数形式の背景色
+ - `icon_url` (string) アイコンのURL
+ - `description` (string) 説明
+ - `copyright` (string) 著作権情報
+ - `privacy_policy` (string) プライバシーポリシーのリンク
+ - `custom_disclaimer` (string) カスタム免責事項
+ - `default_language` (string) デフォルト言語
+ - `show_workflow_steps` (bool) ワークフローの詳細を表示するかどうか
+ - `use_icon_as_answer_icon` (bool) WebAppのアイコンをチャット内の🤖に置き換えるかどうか
+
+
+
+ ```bash {{ title: 'cURL' }}
+ curl -X GET '${props.appDetail.api_base_url}/site' \
+ -H 'Authorization: Bearer {api_key}'
+ ```
+
+
+
+
+ ```json {{ title: 'Response' }}
+ {
+ "title": "My App",
+ "chat_color_theme": "#ff4a4a",
+ "chat_color_theme_inverted": false,
+ "icon_type": "emoji",
+ "icon": "😄",
+ "icon_background": "#FFEAD5",
+ "icon_url": null,
+ "description": "This is my app.",
+ "copyright": "all rights reserved",
+ "privacy_policy": "",
+ "custom_disclaimer": "All generated by AI",
+ "default_language": "en-US",
+ "show_workflow_steps": false,
+ "use_icon_as_answer_icon": false,
+ }
+ ```
+
+
+
+___
diff --git a/web/app/components/develop/template/template_advanced_chat.zh.mdx b/web/app/components/develop/template/template_advanced_chat.zh.mdx
index 4a1e876d40..9077f5492f 100755
--- a/web/app/components/develop/template/template_advanced_chat.zh.mdx
+++ b/web/app/components/develop/template/template_advanced_chat.zh.mdx
@@ -1329,8 +1329,6 @@ import { Row, Col, Properties, Property, Heading, SubProperty } from '../md.tsx'
---
----
-
___
----
-
---
+
+
+
+ Used to get the WebApp settings of the application.
+ ### Response
+ - `title` (string) WebApp name
+ - `chat_color_theme` (string) Chat color theme, in hex format
+ - `chat_color_theme_inverted` (bool) Whether the chat color theme is inverted
+ - `icon_type` (string) Icon type, `emoji` - emoji, `image` - picture
+ - `icon` (string) Icon. If it's `emoji` type, it's an emoji symbol; if it's `image` type, it's an image URL
+ - `icon_background` (string) Background color in hex format
+ - `icon_url` (string) Icon URL
+ - `description` (string) Description
+ - `copyright` (string) Copyright information
+ - `privacy_policy` (string) Privacy policy link
+ - `custom_disclaimer` (string) Custom disclaimer
+ - `default_language` (string) Default language
+ - `show_workflow_steps` (bool) Whether to show workflow details
+ - `use_icon_as_answer_icon` (bool) Whether to replace 🤖 in chat with the WebApp icon
+
+
+
+ ```bash {{ title: 'cURL' }}
+ curl -X GET '${props.appDetail.api_base_url}/site' \
+ -H 'Authorization: Bearer {api_key}'
+ ```
+
+
+
+
+ ```json {{ title: 'Response' }}
+ {
+ "title": "My App",
+ "chat_color_theme": "#ff4a4a",
+ "chat_color_theme_inverted": false,
+ "icon_type": "emoji",
+ "icon": "😄",
+ "icon_background": "#FFEAD5",
+ "icon_url": null,
+ "description": "This is my app.",
+ "copyright": "all rights reserved",
+ "privacy_policy": "",
+ "custom_disclaimer": "All generated by AI",
+ "default_language": "en-US",
+ "show_workflow_steps": false,
+ "use_icon_as_answer_icon": false,
+ }
+ ```
+
+
+
+___
+
+
+---
+
+
+
+
+ アプリのWebApp設定を取得するために使用します。
+ ### 応答
+ - `title` (string) WebApp名
+ - `chat_color_theme` (string) チャットの色テーマ、16進数形式
+ - `chat_color_theme_inverted` (bool) チャットの色テーマを反転するかどうか
+ - `icon_type` (string) アイコンタイプ、`emoji`-絵文字、`image`-画像
+ - `icon` (string) アイコン。`emoji`タイプの場合は絵文字、`image`タイプの場合は画像URL
+ - `icon_background` (string) 16進数形式の背景色
+ - `icon_url` (string) アイコンのURL
+ - `description` (string) 説明
+ - `copyright` (string) 著作権情報
+ - `privacy_policy` (string) プライバシーポリシーのリンク
+ - `custom_disclaimer` (string) カスタム免責事項
+ - `default_language` (string) デフォルト言語
+ - `show_workflow_steps` (bool) ワークフローの詳細を表示するかどうか
+ - `use_icon_as_answer_icon` (bool) WebAppのアイコンをチャット内の🤖に置き換えるかどうか
+
+
+
+ ```bash {{ title: 'cURL' }}
+ curl -X GET '${props.appDetail.api_base_url}/site' \
+ -H 'Authorization: Bearer {api_key}'
+ ```
+
+
+
+
+ ```json {{ title: 'Response' }}
+ {
+ "title": "My App",
+ "chat_color_theme": "#ff4a4a",
+ "chat_color_theme_inverted": false,
+ "icon_type": "emoji",
+ "icon": "😄",
+ "icon_background": "#FFEAD5",
+ "icon_url": null,
+ "description": "This is my app.",
+ "copyright": "all rights reserved",
+ "privacy_policy": "",
+ "custom_disclaimer": "All generated by AI",
+ "default_language": "en-US",
+ "show_workflow_steps": false,
+ "use_icon_as_answer_icon": false,
+ }
+ ```
+
+
+
+___
diff --git a/web/app/components/develop/template/template_workflow.en.mdx b/web/app/components/develop/template/template_workflow.en.mdx
index 556b306a64..2afcedc88c 100644
--- a/web/app/components/develop/template/template_workflow.en.mdx
+++ b/web/app/components/develop/template/template_workflow.en.mdx
@@ -737,3 +737,56 @@ Workflow applications offers non-session support and is ideal for translation, a
+---
+
+
+
+
+ Used to get the WebApp settings of the application.
+ ### Response
+ - `title` (string) WebApp name
+ - `icon_type` (string) Icon type, `emoji` - emoji, `image` - picture
+ - `icon` (string) Icon. If it's `emoji` type, it's an emoji symbol; if it's `image` type, it's an image URL.
+ - `icon_background` (string) Background color in hex format
+ - `icon_url` (string) Icon URL
+ - `description` (string) Description
+ - `copyright` (string) Copyright information
+ - `privacy_policy` (string) Privacy policy link
+ - `custom_disclaimer` (string) Custom disclaimer
+ - `default_language` (string) Default language
+ - `show_workflow_steps` (bool) Whether to show workflow details
+
+
+
+ ```bash {{ title: 'cURL' }}
+ curl -X GET '${props.appDetail.api_base_url}/site' \
+ -H 'Authorization: Bearer {api_key}'
+ ```
+
+
+
+
+ ```json {{ title: 'Response' }}
+ {
+ "title": "My App",
+ "icon_type": "emoji",
+ "icon": "😄",
+ "icon_background": "#FFEAD5",
+ "icon_url": null,
+ "description": "This is my app.",
+ "copyright": "all rights reserved",
+ "privacy_policy": "",
+ "custom_disclaimer": "All generated by AI",
+ "default_language": "en-US",
+ "show_workflow_steps": false,
+ }
+ ```
+
+
+
+___
diff --git a/web/app/components/develop/template/template_workflow.ja.mdx b/web/app/components/develop/template/template_workflow.ja.mdx
index 3f33be58b9..b6afea9bc4 100644
--- a/web/app/components/develop/template/template_workflow.ja.mdx
+++ b/web/app/components/develop/template/template_workflow.ja.mdx
@@ -740,3 +740,57 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
+———
+
+
+
+
+ アプリのWebApp設定を取得するために使用します。
+ ### 応答
+ - `title` (string) WebApp名
+ - `icon_type` (string) アイコンタイプ、`emoji`-絵文字、`image`-画像
+ - `icon` (string) アイコン。`emoji`タイプの場合は絵文字、`image`タイプの場合は画像URL
+ - `icon_background` (string) 16進数形式の背景色
+ - `icon_url` (string) アイコンのURL
+ - `description` (string) 説明
+ - `copyright` (string) 著作権情報
+ - `privacy_policy` (string) プライバシーポリシーのリンク
+ - `custom_disclaimer` (string) カスタム免責事項
+ - `default_language` (string) デフォルト言語
+ - `show_workflow_steps` (bool) ワークフローの詳細を表示するかどうか
+
+
+
+ ```bash {{ title: 'cURL' }}
+ curl -X GET '${props.appDetail.api_base_url}/site' \
+ -H 'Authorization: Bearer {api_key}'
+ ```
+
+
+
+
+ ```json {{ title: 'Response' }}
+ {
+ "title": "My App",
+ "icon_type": "emoji",
+ "icon": "😄",
+ "icon_background": "#FFEAD5",
+ "icon_url": null,
+ "description": "This is my app.",
+ "copyright": "all rights reserved",
+ "privacy_policy": "",
+ "custom_disclaimer": "All generated by AI",
+ "default_language": "en-US",
+ "show_workflow_steps": false,
+ }
+ ```
+
+
+
+___
+