캐릭터 챗봇 #338
|
@ -9,6 +9,7 @@ data class ChatCharacterDetailResponse(
|
||||||
val imageUrl: String?,
|
val imageUrl: String?,
|
||||||
val description: String,
|
val description: String,
|
||||||
val systemPrompt: String,
|
val systemPrompt: String,
|
||||||
|
val characterType: String,
|
||||||
val age: Int?,
|
val age: Int?,
|
||||||
val gender: String?,
|
val gender: String?,
|
||||||
val mbti: String?,
|
val mbti: String?,
|
||||||
|
@ -40,6 +41,7 @@ data class ChatCharacterDetailResponse(
|
||||||
imageUrl = fullImagePath,
|
imageUrl = fullImagePath,
|
||||||
description = chatCharacter.description,
|
description = chatCharacter.description,
|
||||||
systemPrompt = chatCharacter.systemPrompt,
|
systemPrompt = chatCharacter.systemPrompt,
|
||||||
|
characterType = chatCharacter.characterType.name,
|
||||||
age = chatCharacter.age,
|
age = chatCharacter.age,
|
||||||
gender = chatCharacter.gender,
|
gender = chatCharacter.gender,
|
||||||
mbti = chatCharacter.mbti,
|
mbti = chatCharacter.mbti,
|
||||||
|
|
Loading…
Reference in New Issue