Spaces:
Sleeping
Sleeping
File size: 359 Bytes
33e2554 c6c2df7 33e2554 c6c2df7 33e2554 c6c2df7 33e2554 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import streamlit as st
st.set_page_config(
page_title="Chatacter",
page_icon="π§βπ€",
layout="wide",
)
st.title("π Chatacter Alpha Version")
st.write(
"This is a simple character chatting app. Now we only support Napoleon Bonaparte"
)
if st.button("Start Chatting with Napoleon Bonaparte"):
st.switch_page("pages/napoleon.py")
|