Update app.py
Browse files
app.py
CHANGED
@@ -100,7 +100,8 @@ def handle_userinput(user_question):
|
|
100 |
|
101 |
# λν 체μΈμ μ¬μ©νμ¬ μ¬μ©μ μ§λ¬Έμ λν μλ΅μ μμ±ν©λλ€.
|
102 |
st.session_state.conversation = {'question': user_question}
|
103 |
-
|
|
|
104 |
|
105 |
if 'chat_history' in response:
|
106 |
st.session_state.chat_history = response['chat_history']
|
|
|
100 |
|
101 |
# λν 체μΈμ μ¬μ©νμ¬ μ¬μ©μ μ§λ¬Έμ λν μλ΅μ μμ±ν©λλ€.
|
102 |
st.session_state.conversation = {'question': user_question}
|
103 |
+
st.session_state.chat_history = response['chat_history']
|
104 |
+
#response = st.session_state.conversation
|
105 |
|
106 |
if 'chat_history' in response:
|
107 |
st.session_state.chat_history = response['chat_history']
|