Spaces:
Sleeping
Sleeping
File size: 435 Bytes
9a1ab03 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import streamlit as st
st.set_page_config(
page_title="Summarization Projects Demo",
page_icon=":rocket:",
)
st.write("## Summarization Projects Demo :rocket:")
st.markdown(
"""
This application is for **internal use** and is designed to facilitate **fast prototyping** and **experimentation.**
π Select a demo from the sidebar to begin experimentation.
"""
)
st.sidebar.success("Select a demo above.")
|