Spaces:
Sleeping
Sleeping
Commit
·
4aee494
1
Parent(s):
d66efa3
regular queue, no size limit in result display
Browse files
app.py
CHANGED
|
@@ -93,8 +93,6 @@ div#share-btn-container > div {flex-direction: row;background: black;align-items
|
|
| 93 |
object-fit: contain;
|
| 94 |
width: 100%;
|
| 95 |
height: auto;
|
| 96 |
-
max-width: 512px; /* Set maximum display size */
|
| 97 |
-
max-height: 512px;
|
| 98 |
}
|
| 99 |
#prompt-container{margin-top:-18px;}
|
| 100 |
#prompt-container .form{border-top-left-radius: 0;border-top-right-radius: 0}
|
|
@@ -139,5 +137,4 @@ with image_blocks as demo:
|
|
| 139 |
"""
|
| 140 |
)
|
| 141 |
|
| 142 |
-
|
| 143 |
-
demo.launch()
|
|
|
|
| 93 |
object-fit: contain;
|
| 94 |
width: 100%;
|
| 95 |
height: auto;
|
|
|
|
|
|
|
| 96 |
}
|
| 97 |
#prompt-container{margin-top:-18px;}
|
| 98 |
#prompt-container .form{border-top-left-radius: 0;border-top-right-radius: 0}
|
|
|
|
| 137 |
"""
|
| 138 |
)
|
| 139 |
|
| 140 |
+
image_blocks.queue(max_size=25,api_open=False).launch(show_api=False)
|
|
|