Spaces:
Runtime error
Runtime error
tombetthauser
commited on
Commit
β’
2db66d7
1
Parent(s):
cffda6e
Fixed curr_time var name
Browse files
app.py
CHANGED
@@ -137,7 +137,7 @@ def image_prompt(prompt, guidance, steps, seed, height, width):
|
|
137 |
print("----- advanced tab prompt ------------------------------")
|
138 |
print(f"prompt: {prompt}, size: {width}px x {height}px, guidance: {guidance}, steps: {steps}, seed: {int(seed)}")
|
139 |
# print(f"image_count: {image_count}, datetime: `{e}`")
|
140 |
-
print(f"datetime: `{
|
141 |
print("-------------------------------------------------------")
|
142 |
|
143 |
return (
|
@@ -285,7 +285,7 @@ def simple_image_prompt(prompt, dropdown, size_dropdown):
|
|
285 |
print("----- welcome / beta tab prompt ------------------------------")
|
286 |
print(f"prompt: {prompt}, size: {width}px x {height}px, guidance: {guidance}, steps: {steps}, seed: {int(seed)}")
|
287 |
# print(f"image_count: {image_count}, datetime: `{e}`")
|
288 |
-
print(f"datetime: `{
|
289 |
print("-------------------------------------------------------")
|
290 |
|
291 |
return (
|
|
|
137 |
print("----- advanced tab prompt ------------------------------")
|
138 |
print(f"prompt: {prompt}, size: {width}px x {height}px, guidance: {guidance}, steps: {steps}, seed: {int(seed)}")
|
139 |
# print(f"image_count: {image_count}, datetime: `{e}`")
|
140 |
+
print(f"datetime: `{curr_time}`")
|
141 |
print("-------------------------------------------------------")
|
142 |
|
143 |
return (
|
|
|
285 |
print("----- welcome / beta tab prompt ------------------------------")
|
286 |
print(f"prompt: {prompt}, size: {width}px x {height}px, guidance: {guidance}, steps: {steps}, seed: {int(seed)}")
|
287 |
# print(f"image_count: {image_count}, datetime: `{e}`")
|
288 |
+
print(f"datetime: `{curr_time}`")
|
289 |
print("-------------------------------------------------------")
|
290 |
|
291 |
return (
|