File size: 189 Bytes
7879a97
 
 
c09d2c4
 
7a0c30d
7879a97
1
2
3
4
5
6
7
import gradio as gr

def greet(name):
#    return "Hello " + name + "!!"
    return
iface = gr.Interface(fn=greet, inputs=gr.Textbox(label="Input PDF path"), outputs="audio")
iface.launch()