Spaces:
Paused
Paused
Update app.py
Browse files
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 |
|