edit
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ user_question = st.chat_input('What do you want to ask ..')
|
|
64 |
if user_question is not None and user_question!="":
|
65 |
with st.chat_message("Human"):
|
66 |
st.write(user_question)
|
67 |
-
response = get_response(user_question)
|
68 |
with st.chat_message("AI", avatar="🏛️"):
|
69 |
st.write(response)
|
70 |
|
|
|
64 |
if user_question is not None and user_question!="":
|
65 |
with st.chat_message("Human"):
|
66 |
st.write(user_question)
|
67 |
+
response = get_response(user_question, avatar=)
|
68 |
with st.chat_message("AI", avatar="🏛️"):
|
69 |
st.write(response)
|
70 |
|