brand-tune / app.py
vvolhejn's picture
Try packaging as a Python package
64c23e9
raw
history blame
130 Bytes
import gradio as gr
from brander.foo import greet
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()