Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
@@ -1,17 +1,15 @@
|
|
1 |
-
import
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
app.launch()
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
|
16 |
-
|
17 |
-
|
|
|
1 |
+
import streamlit as st
|
2 |
|
3 |
+
st.set_page_config(
|
4 |
+
page_title="Chatacter",
|
5 |
+
page_icon="π§βπ€",
|
6 |
+
layout="wide",
|
7 |
+
)
|
|
|
|
|
8 |
|
9 |
+
st.title("π Chatacter Alpha Version")
|
10 |
+
st.write(
|
11 |
+
"This is a simple character chatting app. Now we only support Napoleon Bonaparte"
|
12 |
+
)
|
13 |
|
14 |
+
if st.button("Start Chatting with Napoleon Bonaparte"):
|
15 |
+
st.switch_page("pages/napoleon.py")
|