forked from talkask-sesac-hackathon/talkask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
175 lines (147 loc) · 5.63 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import streamlit as st
from langchain_openai import OpenAI
import os
from dotenv import load_dotenv
from stt.whisper import whisper_transcribe_from_file
import wave
import io
from st_audiorec import st_audiorec
from streamlit_chat import message
# .env 파일에서 환경 변수 로드
load_dotenv(override=True)
# OpenAI API 키 설정
llm = OpenAI()
# 챗봇 응답 생성 함수
def chatbot_response(user_input, chat_history):
messages = [{"role": "system", "content": "너는 카페에서 고객의 주문을 도와주는 챗봇이야. 최대한 친절하게 주문을 받아줘."}]
for entry in chat_history:
messages.append({"role": "user", "content": entry["user"]})
messages.append({"role": "assistant", "content": entry["bot"]})
messages.append({"role": "user", "content": user_input})
response = llm.invoke(user_input)
return response
# Streamlit 애플리케이션 설정
st.set_page_config(page_title="Chatbot Interface", layout="wide")
st.title("TalkASK 📢 ")
if "chat_history" not in st.session_state:
st.session_state.chat_history = [{"user":'', "bot": "어서오세요. TalkAsk입니다 😊 무엇을 도와드릴까요? "}]
if "filtered_images" not in st.session_state:
st.session_state.filtered_images = []
# 이미지 데이터 (예시)
image_data = {
"category1": ["images/menu1.jpg", "images/menu2.jpg"],
"category2": ["images/menu3.jpg", "images/menu4.jpg"],
"category3": ["images/menu5.jpg", "images/menu6.jpg"]
}
# 사용자 입력 처리 콜백 함수
def handle_input(input):
user_input = input
if user_input:
# 사용자 메시지 추가
st.session_state.chat_history.append({"user": user_input, "bot": ""})
# 챗봇 응답 생성
bot_response = chatbot_response(user_input, st.session_state.chat_history)
# 챗봇 응답 추가
st.session_state.chat_history[-1]["bot"] = bot_response
# 사용자의 입력을 기반으로 이미지 필터링 (예시로 간단한 키워드 필터링 사용)
if "category1" in user_input:
st.session_state.filtered_images = image_data["category1"]
elif "category2" in user_input:
st.session_state.filtered_images = image_data["category2"]
elif "category3" in user_input:
st.session_state.filtered_images = image_data["category3"]
else:
st.session_state.filtered_images = []
# 입력 필드 초기화
st.session_state.user_input = ""
# 두 개의 열 생성
col1, col2 = st.columns([1, 3])
with col1:
st.markdown("<h3 style='text-align: center;'>Talk Ask Chatbot🤖 </h3>", unsafe_allow_html=True)
# 채팅 입력
st.session_state.user_input = st_audiorec()
def get_wav_info(byte_data):
"""
WAV 바이트 데이터에서 오디오 정보를 추출합니다.
"""
with io.BytesIO(byte_data) as wav_buffer:
with wave.open(wav_buffer, 'rb') as wav_file:
channels = wav_file.getnchannels()
sample_width = wav_file.getsampwidth()
frame_rate = wav_file.getframerate()
frames = wav_file.readframes(wav_file.getnframes())
return channels, sample_width, frame_rate, frames
# byte 파일 -> wav 파일로 변환
def bytes_to_wav(byte_data, output_filename):
"""
바이트 데이터를 WAV 파일로 변환합니다.
"""
channels, sample_width, frame_rate, frames = get_wav_info(byte_data)
with wave.open(output_filename, 'wb') as wav_file:
wav_file.setnchannels(channels)
wav_file.setsampwidth(sample_width)
wav_file.setframerate(frame_rate)
wav_file.writeframes(frames)
# wav 파일 저장 후 STT 실행하기
if st.button("채팅 보내기", key = 'ss'):
bytes_to_wav(st.session_state.user_input, 'output.wav')
handle_input(whisper_transcribe_from_file('output.wav', '숫자세기'))
# 채팅 내역 표시
for i, entry in enumerate(st.session_state.chat_history):
if entry['user']: # 사용자 메시지가 비어있지 않은 경우에만 표시
message(entry['user'], is_user=True, key=f"user_{i}")
message(entry['bot'], key=f"bot_{i}")
with col2:
st.title("메뉴판")
# 필터링된 이미지 표시
for image_path in st.session_state.filtered_images:
st.image(image_path, use_column_width=True)
# 스타일 적용
st.markdown("""
<style>
.chat-container {
background-color: #DFF0D8; /* 채팅 컨테이너 배경색 */
padding: 10px;
border-radius: 10px;
}
.image-container {
background-color: #FFFFFF; /* 이미지 컨테이너 배경색 */
padding: 10px;
border-radius: 10px;
}
.user-message {
background-color: #dcf8c6;
padding: 10px;
border-radius: 10px;
margin: 5px 0;
text-align: right;
}
.chatbot-message {
background-color: #f1f1f1;
padding: 10px;
border-radius: 10px;
margin: 5px 0;
text-align: left;
}
.responsive-image img {
width: 100%;
height: auto;
}
.stTextInput>div>input {
width: 100%;
}
.stButton>button {
width: 100%;
}
.stColumn:nth-child(1) {
background-color: #DFF0D8; /* 첫 번째 컬럼 배경색 */
padding: 10px;
border-radius: 10px;
}
.stColumn:nth-child(2) {
background-color: #FFFFFF; /* 두 번째 컬럼 배경색 */
padding: 10px;
border-radius: 10px;
}
</style>
""", unsafe_allow_html=True)