jeorgijergj / app.py
cbensimon's picture
cbensimon HF Staff
Create app.py
0c02257 verified
raw
history blame contribute delete
196 Bytes
import gradio as gr
def greet(request: gr.Request, name):
print(request.headers)
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()