diff --git a/package.json b/package.json
index 7fadeaa8e..21bf26eac 100644
--- a/package.json
+++ b/package.json
@@ -60,7 +60,7 @@
"stylus-loader": "^7.1.0",
"tinymce": "^5.10.3",
"tui-calendar-hi": "^1.15.1-5",
- "view-design-hi": "^4.7.0-69",
+ "view-design-hi": "^4.7.0-70",
"vite": "^2.9.15",
"vite-plugin-file-copy": "^1.0.0",
"vite-plugin-require": "^1.1.10",
diff --git a/resources/assets/js/pages/manage/components/DialogWrapper.vue b/resources/assets/js/pages/manage/components/DialogWrapper.vue
index c5e34f22f..f815c9ff6 100644
--- a/resources/assets/js/pages/manage/components/DialogWrapper.vue
+++ b/resources/assets/js/pages/manage/components/DialogWrapper.vue
@@ -457,7 +457,7 @@
:autosize="{minRows:3,maxRows:5}"
v-model="modifyData.value"
:placeholder="$L('例如:你是一个人开发的AI助手')"
- show-word-limit/>
+ :show-word-limit="0.9"/>
diff --git a/resources/assets/js/pages/manage/setting/components/SystemAibot.vue b/resources/assets/js/pages/manage/setting/components/SystemAibot.vue
index 27643da72..a9d4fb673 100644
--- a/resources/assets/js/pages/manage/setting/components/SystemAibot.vue
+++ b/resources/assets/js/pages/manage/setting/components/SystemAibot.vue
@@ -10,10 +10,11 @@
+ :placeholder="$L(field.placeholder)"
+ :show-word-limit="typeof field.showWordLimit === 'undefined' ? 0.9 : field.showWordLimit"/>
+ :placeholder="$L(field.placeholder)"
+ :show-word-limit="typeof field.showWordLimit === 'undefined' ? 0.9 : field.showWordLimit"/>
diff --git a/resources/assets/js/store/ai.js b/resources/assets/js/store/ai.js
index a445229f1..1b86321c4 100644
--- a/resources/assets/js/store/ai.js
+++ b/resources/assets/js/store/ai.js
@@ -89,6 +89,7 @@ const AISystemConfig = {
prop: "models",
type: "textarea",
maxlength: 1000,
+ showWordLimit: 0.9,
placeholder: "一行一个模型名称",
functions: "使用默认模型列表"
},
@@ -122,7 +123,7 @@ const AISystemConfig = {
prop: "system",
type: "textarea",
maxlength: 20000,
- showWordLimit: true,
+ showWordLimit: 0.9,
placeholder: "请输入默认提示词",
tip: "例如:你是一个人开发的AI助手"
}