Chatacter / app.py
MH0386's picture
Upload folder using huggingface_hub
33e2554 verified
raw
history blame contribute delete
359 Bytes
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")