캐릭터 챗봇 #338

Merged
klaus merged 119 commits from test into main 2025-09-10 06:08:47 +00:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit 00c617ec2e - Show all commits

View File

@ -9,6 +9,7 @@ data class ChatCharacterDetailResponse(
val imageUrl: String?,
val description: String,
val systemPrompt: String,
val characterType: String,
val age: Int?,
val gender: String?,
val mbti: String?,
@ -40,6 +41,7 @@ data class ChatCharacterDetailResponse(
imageUrl = fullImagePath,
description = chatCharacter.description,
systemPrompt = chatCharacter.systemPrompt,
characterType = chatCharacter.characterType.name,
age = chatCharacter.age,
gender = chatCharacter.gender,
mbti = chatCharacter.mbti,