Skip to content

Commit 69945c6

Browse files
committed
Add page config
1 parent e28444b commit 69945c6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

app.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,15 @@ def generate_summary_with_spinner(documents: dict[str, list[Document]]) -> dict[
7575
return summaries
7676

7777

78+
st.set_page_config(page_title="RabbitHole", page_icon="🐇", layout="wide")
79+
7880
st.title("RabbitHole")
7981

8082
uploaded_files = st.file_uploader("Upload content",
8183
type=["docx", "pdf", "txt", *SUPPORTED_IMG_FILE_TYPES, *SUPPORTED_AV_FILE_TYPES],
8284
accept_multiple_files=True)
8385

84-
if st.button("Summarize"):
86+
if st.button("Dive in"):
8587
if not uploaded_files:
8688
st.warning("Please upload a file first.")
8789
st.stop()

0 commit comments

Comments
 (0)