testingnewspace / app.py
basilkr's picture
Update app.py
0721ac7 verified
raw
history blame
162 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface("basilkr/luke_ST_low", inputs="text", outputs="text")
iface.launch()