AudioQuran / app.py
wasmdashai's picture
Update app.py
e66a197 verified
raw
history blame
157 Bytes
import gradio as gr
def greet(name):
return "مرحباً، " + name + "!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()