Spaces:
Sleeping
Sleeping
Vladimir Alabov
commited on
Commit
•
dd17486
1
Parent(s):
609b135
Add greet
Browse files
app.py
CHANGED
@@ -77,3 +77,12 @@ if __name__ == '__main__':
|
|
77 |
vc_output2 = gr.Audio(label="Output Audio")
|
78 |
vc_submit.click(vc_fn, [vc_input, vc_transform, auto_f0], [vc_output1, vc_output2])
|
79 |
app.queue(concurrency_count=1, api_open=args.api).launch(share=args.share)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
vc_output2 = gr.Audio(label="Output Audio")
|
78 |
vc_submit.click(vc_fn, [vc_input, vc_transform, auto_f0], [vc_output1, vc_output2])
|
79 |
app.queue(concurrency_count=1, api_open=args.api).launch(share=args.share)
|
80 |
+
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
def greet(name):
|
85 |
+
return "Hello " + name + "!!"
|
86 |
+
|
87 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
88 |
+
iface.launch()
|