BuildingExtraction / App_main.py
KyanChen's picture
add model
ab01e4a
raw
history blame
159 Bytes
import gradio as gr
import os
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()