Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import time
|
3 |
+
import base64
|
4 |
+
import streamlit as st
|
5 |
+
|
6 |
+
|
7 |
+
st.set_page_config(page_title='StoicCyber', page_icon="🏛️", layout="centered", initial_sidebar_state="collapsed")
|
8 |
+
|
9 |
+
# show background image
|
10 |
+
def get_base64_of_bin_file2(bin_file):
|
11 |
+
with open(bin_file, 'rb') as f:
|
12 |
+
data = f.read()
|
13 |
+
return base64.b64encode(data).decode()
|
14 |
+
|
15 |
+
def set_png_as_page_bg(png_file):
|
16 |
+
bin_str = get_base64_of_bin_file2(png_file)
|
17 |
+
page_bg_img = '''
|
18 |
+
<link href='https://fonts.googleapis.com/css?family=Libre Baskerville' rel='stylesheet'>
|
19 |
+
<style>
|
20 |
+
.stApp {
|
21 |
+
background-image: url("data:image/png;base64,%s");
|
22 |
+
background-size: cover;
|
23 |
+
background-repeat: no-repeat;
|
24 |
+
background-attachment: scroll;
|
25 |
+
}
|
26 |
+
</style>
|
27 |
+
''' % bin_str
|
28 |
+
st.markdown(page_bg_img, unsafe_allow_html=True)
|
29 |
+
return
|
30 |
+
|
31 |
+
set_png_as_page_bg('pxfuel.jpg')
|
32 |
+
|
33 |
+
# header
|
34 |
+
original_title = '<h1 style="font-family: Libre Baskerville; color:#faf8f8; font-size: 30px; text-align: left; ">STOIC Ω CYBER</h1>'
|
35 |
+
st.markdown(original_title, unsafe_allow_html=True)
|
36 |
+
|
37 |
+
@st.cache_resource
|
38 |
+
def load_model():
|
39 |
+
# return load()
|
40 |
+
pass
|
41 |
+
|
42 |
+
|
43 |
+
# chat componenets
|
44 |
+
|
45 |
+
def get_response(user_question):
|
46 |
+
progress_text = "Loading model. Please wait."
|
47 |
+
my_bar = st.progress(0, text=progress_text)
|
48 |
+
# run the functions in the place of time sleep
|
49 |
+
time. sleep(1)
|
50 |
+
my_bar.progress(0.3, "Loading Model. Please wait.")
|
51 |
+
time. sleep(5)
|
52 |
+
my_bar.progress(0.6, "Generating Answer. Please wait.")
|
53 |
+
time. sleep(5)
|
54 |
+
my_bar.progress(0.9, "Post Processing. Please wait.")
|
55 |
+
time. sleep(5)
|
56 |
+
my_bar.progress(1.0, "Done")
|
57 |
+
time. sleep(1)
|
58 |
+
my_bar.empty()
|
59 |
+
return "I don't know!"
|
60 |
+
|
61 |
+
|
62 |
+
user_question = st.chat_input('What do you want to ask ..')
|
63 |
+
if user_question is not None and user_question!="":
|
64 |
+
with st.chat_message("Human"):
|
65 |
+
st.write(user_question)
|
66 |
+
response = get_response(user_question)
|
67 |
+
with st.chat_message("AI"):
|
68 |
+
st.write(response)
|
69 |
+
|
70 |
+
|
71 |
+
# Hide footer and header
|
72 |
+
hide_st_style = """
|
73 |
+
<style>
|
74 |
+
header {visibility: hidden;}
|
75 |
+
footer {visibility: hidden;}
|
76 |
+
</style>
|
77 |
+
"""
|
78 |
+
st.markdown(hide_st_style, unsafe_allow_html=True)
|
79 |
+
|
80 |
+
|
81 |
+
|