Trees / app_old.py
Humboldt's picture
Update app_old.py
665ac55
raw
history blame contribute delete
148 Bytes
import gradio as gr
def greet(name):
return "Hello " + "!"
demo = gr.Interface(fn=greet, inputs="file", outputs="text")
demo.launch()