Spaces:
Runtime error
Runtime error
Commit
·
7f9ce57
1
Parent(s):
2f8a733
Update app.py
Browse files
app.py
CHANGED
@@ -70,9 +70,9 @@ def main():
|
|
70 |
prompt = st.text_input(
|
71 |
label="Write prompt to generate your unique BAYC image! (e.g. An ape with golden fur)")
|
72 |
|
73 |
-
num_images = st.text_input(label="Number of images to generate")
|
74 |
|
75 |
-
seed = st.text_input(label="Seed for images")
|
76 |
|
77 |
if prompt and num_images and seed:
|
78 |
st.write(f"Generating {num_images} BAYC image with prompt <{prompt}>...")
|
|
|
70 |
prompt = st.text_input(
|
71 |
label="Write prompt to generate your unique BAYC image! (e.g. An ape with golden fur)")
|
72 |
|
73 |
+
num_images = int(st.text_input(label="Number of images to generate"))
|
74 |
|
75 |
+
seed = int(st.text_input(label="Seed for images"))
|
76 |
|
77 |
if prompt and num_images and seed:
|
78 |
st.write(f"Generating {num_images} BAYC image with prompt <{prompt}>...")
|