amirgame197 commited on
Commit
145f454
·
verified ·
1 Parent(s): dd20247

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -19,5 +19,8 @@ def process(prompt):
19
 
20
  return(file_path)
21
 
22
- iface = gr.Interface(fn=process, inputs="text", outputs="image")
 
 
 
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()