591Analyzer / app_hello.py
54justin's picture
Upload 18 files
101f06b verified
raw
history blame contribute delete
171 Bytes
import gradio as gr
def hello(name):
return f"Hello {name}! ? 591���Τ��R�����ժ���"
demo = gr.Interface(fn=hello, inputs="text", outputs="text")
demo.launch()