Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -44,10 +44,11 @@ examples = [
|
|
44 |
["My name is", 30],
|
45 |
["I have", 60]
|
46 |
]
|
47 |
-
|
48 |
iface = gr.Interface(fn=generateTextAndAudio,
|
49 |
inputs=[input1_textbox, input2_slider],
|
50 |
outputs=[output1_textbox, output2_Audio],
|
51 |
title=title,
|
52 |
description=description,
|
53 |
-
examples=examples
|
|
|
|
44 |
["My name is", 30],
|
45 |
["I have", 60]
|
46 |
]
|
47 |
+
article = "<p style='text-align: center'><img src='https://visitor-badge.glitch.me/badge?page_id=epoching_glide_inpaint' alt='visitor badge'></p>"
|
48 |
iface = gr.Interface(fn=generateTextAndAudio,
|
49 |
inputs=[input1_textbox, input2_slider],
|
50 |
outputs=[output1_textbox, output2_Audio],
|
51 |
title=title,
|
52 |
description=description,
|
53 |
+
examples=examples
|
54 |
+
article=article).launch(debug = True)
|