mogwai-wallet / app.py
YmcAI's picture
Upload app.py
04cc6ed
import gradio
def hallo(name):
return f'Hello {name}'
interface = gradio.Interface(fn=hallo,inputs="text", outputs="text")
interface.launch()