Info_Assistant / app.py
ArturG9's picture
Update app.py
9ccb529 verified
raw
history blame
No virus
652 Bytes
import os
import streamlit as st
def main():
st.set_page_config(page_title="Info Assistant: ",
page_icon=":books:")
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:")
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.")
if __name__ == "__main__":
main()