Commit
·
0136600
1
Parent(s):
cbcc1be
Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,12 @@ import os
|
|
6 |
from dotenv import load_dotenv
|
7 |
load_dotenv()
|
8 |
|
9 |
-
st.set_page_config(page_title="AI
|
10 |
-
st.
|
|
|
|
|
|
|
|
|
11 |
|
12 |
current_datetime_0= datetime.datetime.now()
|
13 |
print(f"Anything happens, this ST app will execute from top down. @ {current_datetime_0}")
|
|
|
6 |
from dotenv import load_dotenv
|
7 |
load_dotenv()
|
8 |
|
9 |
+
st.set_page_config(page_title="WeChat Article AI Assistant - Open Source Version", layout="wide")
|
10 |
+
st.subheader("Welcome to Open WeChat Article AI Assistant: Life Enhancing with AI!")
|
11 |
+
st.write("Important notice: This Open WeChat Article AI Assistant is offered for information and study purpose only and by no means for any other use. Any user should never interact with the AI Assistant in any way that is against any related promulgated regulations. The user is the only entity responsible for interactions taken between the user and the AI Chat Assistant.")
|
12 |
+
css_file = "main.css"
|
13 |
+
with open(css_file) as f:
|
14 |
+
st.markdown("<style>{}</style>".format(f.read()), unsafe_allow_html=True)
|
15 |
|
16 |
current_datetime_0= datetime.datetime.now()
|
17 |
print(f"Anything happens, this ST app will execute from top down. @ {current_datetime_0}")
|