Skip to content

Commit d4ebbeb

Browse files
committed
refactor: edit annotation
1 parent aafa3f6 commit d4ebbeb

File tree

1 file changed

+6
-23
lines changed

1 file changed

+6
-23
lines changed

src/main/java/com/back/domain/chatbot/dto/CocktailPreferenceDto.java

Lines changed: 6 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,19 @@
77

88
import java.util.List;
99

10-
/**
11-
* LLM이 사용자 입력을 분석하여 추출한 칵테일 선호도 정보
12-
*/
10+
1311
@Getter
1412
@Builder
1513
@NoArgsConstructor
1614
@AllArgsConstructor
17-
public class CocktailPreferenceDto {
15+
public class CocktailPreferenceDto { // 칵테일 선호 정보
1816

19-
/**
20-
* 추출된 키워드 목록 (영문, 한글 혼합 가능)
21-
* 예: ["sweet", "fruity", "달콤한", "tropical"]
22-
*/
17+
//추출된 키워드 목록 (영문, 한글 혼합 가능)
2318
private List<String> keywords;
24-
25-
/**
26-
* LLM이 추천한 칵테일 이름 목록
27-
* 예: ["Mojito", "Daiquiri", "Pina Colada"]
28-
*/
19+
//칵테일 이름 추천
2920
private List<String> suggestedCocktails;
30-
31-
/**
32-
* 추출된 맛 프로필
33-
* 예: "sweet_fruity", "bitter_strong", "refreshing"
34-
*/
21+
//추출된 맛 프로필
3522
private String flavorProfile;
36-
37-
/**
38-
* 추출된 분위기/상황
39-
* 예: "party", "date", "relaxing"
40-
*/
23+
//추출된 무드/상황
4124
private String mood;
4225
}

0 commit comments

Comments
 (0)