Spaces:
Runtime error
Runtime error
Commit
·
cf8b666
1
Parent(s):
fc3e1a1
Update app.py
Browse files
app.py
CHANGED
@@ -66,9 +66,9 @@ def main():
|
|
66 |
prompt = st.text_input(
|
67 |
label="Write prompt to generate your unique BAYC image! (e.g. An ape with golden fur)")
|
68 |
|
69 |
-
num_images = st.
|
70 |
|
71 |
-
seed = st.
|
72 |
|
73 |
if prompt and num_images and seed:
|
74 |
st.write(f"Generating {num_images} BAYC image with prompt {prompt}...")
|
|
|
66 |
prompt = st.text_input(
|
67 |
label="Write prompt to generate your unique BAYC image! (e.g. An ape with golden fur)")
|
68 |
|
69 |
+
num_images = st.text_input(label="Number of images to generate")
|
70 |
|
71 |
+
seed = st.text_input(label="Seed for images")
|
72 |
|
73 |
if prompt and num_images and seed:
|
74 |
st.write(f"Generating {num_images} BAYC image with prompt {prompt}...")
|