Spaces:
Runtime error
Runtime error
File size: 165 Bytes
327eb92 |
1 2 3 4 5 |
import gradio as gr
def print_text(text):
return "Hello World, " + text
interface = gr.Interface(fn=print_text, inputs="text", outputs="text")
interface.launch() |