Linhz commited on
Commit
8d196c9
·
verified ·
1 Parent(s): 0965d00

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -10,6 +10,13 @@ from transformers import pipeline
10
 
11
  st.set_page_config(page_title = "Vietnamese Legal Question Answering System", page_icon= "🐧", layout="centered", initial_sidebar_state="collapsed")
12
 
 
 
 
 
 
 
 
13
  with open('articles.pkl', 'rb') as file:
14
  articles = pickle.load(file)
15
 
 
10
 
11
  st.set_page_config(page_title = "Vietnamese Legal Question Answering System", page_icon= "🐧", layout="centered", initial_sidebar_state="collapsed")
12
 
13
+ st.markdown(
14
+ """
15
+ <h1 style="text-align: center;">Vietnamese Legal Question Answering System</h1>
16
+ """,
17
+ unsafe_allow_html=True
18
+ )
19
+
20
  with open('articles.pkl', 'rb') as file:
21
  articles = pickle.load(file)
22