From b21d0f455f347fd97e4fa700395f3ccda92b338e Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Mon, 16 Mar 2026 11:12:38 +0900 Subject: [PATCH] =?UTF-8?q?feat(chat):=20=EC=8B=9C=EC=8A=A4=ED=85=9C=20?= =?UTF-8?q?=ED=94=84=EB=A1=AC=ED=94=84=ED=8A=B8=20=EA=B8=80=EC=9E=90?= =?UTF-8?q?=EC=88=98=20=ED=91=9C=EC=8B=9C=20=EB=B0=8F=202000=EC=9E=90=20?= =?UTF-8?q?=EC=A0=9C=ED=95=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Chat/CharacterForm.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/Chat/CharacterForm.vue b/src/views/Chat/CharacterForm.vue index a563a52..8a1fc73 100644 --- a/src/views/Chat/CharacterForm.vue +++ b/src/views/Chat/CharacterForm.vue @@ -353,10 +353,11 @@ @@ -1182,7 +1183,8 @@ export default { ], typeOptions: ['Clone', 'Character'], systemPromptRules: [ - v => (this.isEdit ? true : (!!v && v.trim().length > 0) || '시스템 프롬프트를 입력하세요') + v => (this.isEdit ? true : (!!v && v.trim().length > 0) || '시스템 프롬프트를 입력하세요'), + v => (!!v && v.length <= 2000) || '최대 2000자까지 입력 가능합니다' ], // 인물 관계 옵션 및 검증 규칙 relationshipTypeOptions: ['가족', '친구', '동료', '연인', '기타'],