adamelliotfields
commited on
Commit
β’
f728e7d
1
Parent(s):
25185ff
Fix logo in pages
Browse files
pages/1_π¬_Text_Generation.py
CHANGED
@@ -31,7 +31,7 @@ if "txt2txt_messages" not in st.session_state:
|
|
31 |
if "txt2txt_seed" not in st.session_state:
|
32 |
st.session_state.txt2txt_seed = 0
|
33 |
|
34 |
-
st.logo(config.logo)
|
35 |
st.sidebar.header("Settings")
|
36 |
|
37 |
text_services = {
|
|
|
31 |
if "txt2txt_seed" not in st.session_state:
|
32 |
st.session_state.txt2txt_seed = 0
|
33 |
|
34 |
+
st.logo(config.logo, size="small")
|
35 |
st.sidebar.header("Settings")
|
36 |
|
37 |
text_services = {
|
pages/2_π¨_Text_to_Image.py
CHANGED
@@ -31,7 +31,7 @@ if "txt2img_messages" not in st.session_state:
|
|
31 |
if "txt2img_seed" not in st.session_state:
|
32 |
st.session_state.txt2img_seed = 0
|
33 |
|
34 |
-
st.logo(config.logo)
|
35 |
st.sidebar.header("Settings")
|
36 |
|
37 |
image_services = {
|
|
|
31 |
if "txt2img_seed" not in st.session_state:
|
32 |
st.session_state.txt2img_seed = 0
|
33 |
|
34 |
+
st.logo(config.logo, size="small")
|
35 |
st.sidebar.header("Settings")
|
36 |
|
37 |
image_services = {
|