Info_Assistant / app.py
ArturG9's picture
Update app.py
1fd4ac2 verified
raw
history blame
474 Bytes
import os
import streamlit as st
def main():
st.set_page_config(page_title="Info Assistant: ",
page_icon=":books:")
st.header("Info Assistant :" ":books:")
st.markdown("###### Get support of "Info Assistant" , who has in memory a lot of Data Science related articles, if it can't answer based on it's knowledge base, information will be found on the internet:" ":books:")
if __name__ == "__main__":
main()