File size: 208 Bytes
16fc878
 
7879a97
 
 
c09d2c4
 
7a0c30d
7879a97
1
2
3
4
5
6
7
8
9
import myfunct.py

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()