gradio-app-test / app.py
nathens's picture
Show python version
5cfb173
raw
history blame contribute delete
180 Bytes
import sys
import gradio as gr
print(sys.version)
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()