Spaces:
Paused
Paused
File size: 171 Bytes
101f06b | 1 2 3 4 5 6 7 | import gradio as gr
def hello(name):
return f"Hello {name}! ? 591���Τ��R�����ժ���"
demo = gr.Interface(fn=hello, inputs="text", outputs="text")
demo.launch() |