vkthakur88 commited on
Commit
5302e8f
·
1 Parent(s): 503ebf3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -15,6 +15,12 @@ def image_interface(prompt):
15
 
16
  return response
17
 
18
- app = gr.Interface(fn = image_interface, inputs = 'text', outputs = 'image', title = 'Oil Painting Generation')
 
 
 
 
 
 
19
 
20
  app.launch()
 
15
 
16
  return response
17
 
18
+ app = gr.Interface(
19
+ fn = image_interface,
20
+ inputs = 'text',
21
+ outputs = 'image',
22
+ title = 'Oil Painting Generation',
23
+ description = 'Vinay Kumar Thakur'
24
+ )
25
 
26
  app.launch()