jgwill's picture
add:app
f01be20
raw
history blame
200 Bytes
import gradio as gr
from jgtutils.jgtpov import get_higher_tf_by_level
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()