ip-address / app.py
cbensimon's picture
cbensimon HF Staff
Create app.py
16693c9
raw
history blame contribute delete
162 Bytes
import gradio as gr
def greet(name, req: gr.Request):
return f"{req.headers=}"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()