TravelMaster / app.py
yym68686's picture
first commit
73cee8c
raw
history blame
165 Bytes
import gradio as gr
def print_text(text):
return "Hello World, " + text
interface = gr.Interface(fn=print_text, inputs="text", outputs="text")
interface.launch()