tonyassi commited on
Commit
09f90bb
1 Parent(s): 3f53728

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -16,5 +16,12 @@ def clone(text, audio):
16
 
17
  iface = gr.Interface(fn=clone,
18
  inputs=["text",gr.Audio(type='filepath')],
19
- outputs=gr.Audio(type='filepath'))
 
 
 
 
 
 
 
20
  iface.launch()
 
16
 
17
  iface = gr.Interface(fn=clone,
18
  inputs=["text",gr.Audio(type='filepath')],
19
+ outputs=gr.Audio(type='filepath'),
20
+ title='Voice Clone',
21
+ description="""
22
+ by [Tony Assi](https://www.tonyassi.com/)
23
+
24
+ Please ❤️ this Space. I build custom AI apps for companies. <a href="mailto: tony.assi.media@gmail.com">Email me</a> for business inquiries.
25
+ """,
26
+ theme = gr.themes.Base(primary_hue="teal",secondary_hue="teal",neutral_hue="slate"))
27
  iface.launch()