Spaces:
Runtime error
Runtime error
siriuszeina
commited on
Commit
•
63c5c46
1
Parent(s):
aec1a03
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,11 @@ if project_name:
|
|
8 |
if os.path.exists("./"+project_name+"/") == False:
|
9 |
os.mkdir("./"+project_name+"/")
|
10 |
st.write(project_name)
|
11 |
-
|
|
|
|
|
|
|
|
|
12 |
archived = shutil.make_archive("output", 'zip', "./output/")
|
13 |
output_num = len(os.listdir("./output/"))
|
14 |
if output_num > 0:
|
|
|
8 |
if os.path.exists("./"+project_name+"/") == False:
|
9 |
os.mkdir("./"+project_name+"/")
|
10 |
st.write(project_name)
|
11 |
+
character = st.text_input("character")
|
12 |
+
anime_from = st.text_input("From")
|
13 |
+
seed = st.slider('seed', 0, 2147483647)
|
14 |
+
if st.button("Generate!"):
|
15 |
+
st.write("hello world")
|
16 |
archived = shutil.make_archive("output", 'zip', "./output/")
|
17 |
output_num = len(os.listdir("./output/"))
|
18 |
if output_num > 0:
|