Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,18 @@ import json
|
|
| 4 |
from PIL import Image
|
| 5 |
|
| 6 |
# Set page configuration with a title and favicon
|
| 7 |
-
st.set_page_config(page_title="๐๐ Transhuman Space Encyclopedia", page_icon="๐ ", layout="wide")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
# Ensure the directory for storing scores exists
|
| 10 |
score_dir = "scores"
|
|
|
|
| 4 |
from PIL import Image
|
| 5 |
|
| 6 |
# Set page configuration with a title and favicon
|
| 7 |
+
# st.set_page_config(page_title="๐๐ Transhuman Space Encyclopedia", page_icon="๐ ", layout="wide") # https://docs.streamlit.io/library/api-reference/utilities/st.set_page_config
|
| 8 |
+
st.set_page_config(
|
| 9 |
+
page_title="๐๐ Transhuman Space Encyclopedia",
|
| 10 |
+
page_icon="๐ ",
|
| 11 |
+
layout="wide",
|
| 12 |
+
initial_sidebar_state="expanded",
|
| 13 |
+
menu_items={
|
| 14 |
+
'Aaron on HF': 'https://huggingface.co/awacke1',
|
| 15 |
+
'Web Dataset Downloader': "https://huggingface.co/spaces/awacke1/WebDataDownload",
|
| 16 |
+
'MJ': "# Midjourney: https://discord.com/channels/@me/997514686608191558"
|
| 17 |
+
}
|
| 18 |
+
)
|
| 19 |
|
| 20 |
# Ensure the directory for storing scores exists
|
| 21 |
score_dir = "scores"
|