Update app.py
Browse files
app.py
CHANGED
@@ -214,7 +214,6 @@ if __name__=="__main__":
|
|
214 |
original_title = '<h1 style="font-family: Libre Baskerville; color:#faf8f8; font-size: 30px; text-align: left; ">STOIC Ω CYBER</h1>'
|
215 |
st.markdown(original_title, unsafe_allow_html=True)
|
216 |
|
217 |
-
user_question = st.chat_input('What do you want to ask ..')
|
218 |
|
219 |
# hide footer and header
|
220 |
hide_st_style = """
|
@@ -276,6 +275,10 @@ if __name__=="__main__":
|
|
276 |
|
277 |
db = load_db(device)
|
278 |
model, tokenizer = load_model(model_name)
|
|
|
|
|
|
|
|
|
279 |
|
280 |
# streamlit chat
|
281 |
if user_question is not None and user_question!="":
|
|
|
214 |
original_title = '<h1 style="font-family: Libre Baskerville; color:#faf8f8; font-size: 30px; text-align: left; ">STOIC Ω CYBER</h1>'
|
215 |
st.markdown(original_title, unsafe_allow_html=True)
|
216 |
|
|
|
217 |
|
218 |
# hide footer and header
|
219 |
hide_st_style = """
|
|
|
275 |
|
276 |
db = load_db(device)
|
277 |
model, tokenizer = load_model(model_name)
|
278 |
+
|
279 |
+
user_question = st.chat_input('What do you want to ask ..')
|
280 |
+
|
281 |
+
st.chat_message("AI").write(" ")
|
282 |
|
283 |
# streamlit chat
|
284 |
if user_question is not None and user_question!="":
|