Spaces:
Sleeping
Sleeping
File size: 237 Bytes
253ac1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# -*- coding: UTF-8 -*-
'''
@author xuanmo
@date 2023/5/23
@name __init__.py
'''
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch() |