LaoCzi's picture
Update app.py
3a2c952
raw
history blame
242 Bytes
import gradio as gr
def echo(name, request: gr.Request):
print("Request headers dictionary:", request.headers)
print("IP address:", request.client.host)
return request.headers
io = gr.Interface(echo, "textbox", "textbox").launch()