Skip to content

Commit 85e07d8

Browse files
authored
[feat] 챗봇 단계별 인풋 받기 단계 성능 개선
[feat] 챗봇 단계별 인풋 받기 단계 성능 개선
2 parents 345b667 + d4ebbeb commit 85e07d8

File tree

2 files changed

+480
-41
lines changed

2 files changed

+480
-41
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package com.back.domain.chatbot.dto;
2+
3+
import lombok.AllArgsConstructor;
4+
import lombok.Builder;
5+
import lombok.Getter;
6+
import lombok.NoArgsConstructor;
7+
8+
import java.util.List;
9+
10+
11+
@Getter
12+
@Builder
13+
@NoArgsConstructor
14+
@AllArgsConstructor
15+
public class CocktailPreferenceDto { // 칵테일 선호 정보
16+
17+
//추출된 키워드 목록 (영문, 한글 혼합 가능)
18+
private List<String> keywords;
19+
//칵테일 이름 추천
20+
private List<String> suggestedCocktails;
21+
//추출된 맛 프로필
22+
private String flavorProfile;
23+
//추출된 무드/상황
24+
private String mood;
25+
}

0 commit comments

Comments
 (0)