testingmodel / app.py
johnbradley's picture
Update app.py
c3a1dc9
raw
history blame contribute delete
192 Bytes
import gradio as gr
import os
print(os.environ['MY_STUFF'])
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()