LaoCzi's picture
Update app.py
bdd0939
raw
history blame
247 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.query_params
io = gr.Interface(echo, "textbox", "textbox").launch()