Update app.py
Browse files
app.py
CHANGED
|
@@ -19,5 +19,8 @@ def process(prompt):
|
|
| 19 |
|
| 20 |
return(file_path)
|
| 21 |
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
| 23 |
iface.launch()
|
|
|
|
| 19 |
|
| 20 |
return(file_path)
|
| 21 |
|
| 22 |
+
title = "Pollinations Image Generator"
|
| 23 |
+
description = "Pollinations API + Randomizer"
|
| 24 |
+
|
| 25 |
+
iface = gr.Interface(fn=process, inputs="text", outputs="image", title=title, description=description)
|
| 26 |
iface.launch()
|