tuned-lens / app.py
Lev McKinney
added basic app file
67cda2a
raw
history blame
No virus
232 Bytes
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()