Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import streamlit as st
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
+
def main():
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
|
11 |
+
st.set_page_config(page_title="Info Assistant: ",
|
12 |
+
page_icon=":books:")
|
13 |
+
|
14 |
+
|
15 |
+
st.header("Get assisted by Birute, who has in memory a lot of Data Science related articles, if she can't answer based on her knowledge base, information will be found on the internet:" ":books:")
|
16 |
+
|
17 |
+
st.markdown("###### Hi, I am Birute (Powered by gemma-2-2b-it-Q8 model), chat assistant, based on republic of Lithuania law documents. You can choose below information retrieval type and how many documents you want to be retrieved.")
|
18 |
+
st.markdown("Available Documents: LR_Civil_Code_2022, LR_Constitution_2022, LR_Criminal_Code_2018, LR_Criminal_Procedure_code_2022,LR_Labour_code_2010. P.S it's a shame that there are no newest documents translations into English... ")
|