Spaces:
Running
Running
Gertie01
commited on
Commit
•
8c58076
1
Parent(s):
335110d
Improving DALL·E mini.
Browse files- app/app.py +1 -1
app/app.py
CHANGED
@@ -85,7 +85,7 @@ if prompt != "" or (should_run_again and prompt != ""):
|
|
85 |
print(f"Getting selections: {prompt}")
|
86 |
selected = get_images_from_backend(prompt, backend_url)
|
87 |
|
88 |
-
cols = st.
|
89 |
for i, img in enumerate(selected):
|
90 |
cols[i%4].image(img)
|
91 |
|
|
|
85 |
print(f"Getting selections: {prompt}")
|
86 |
selected = get_images_from_backend(prompt, backend_url)
|
87 |
|
88 |
+
cols = st.columns(4)
|
89 |
for i, img in enumerate(selected):
|
90 |
cols[i%4].image(img)
|
91 |
|