testat / app.py
satpalsr's picture
Create app.py
9649d56
raw
history blame
257 Bytes
import gradio as gr
def echo(name, request: gr.Request):
if request:
print("Request headers dictionary:", request.headers)
print("IP address:", request.client.host)
return name
io = gr.Interface(echo, "textbox", "textbox").launch()