Spaces:
Running
Running
File size: 232 Bytes
67cda2a |
1 2 3 4 5 6 7 8 9 |
from platform import python_version
import gradio as gr
def greet(name):
return "Hello " + name + "!!" + "Using python version: " + python_version()
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
|