File size: 231 Bytes
ffc02c6
 
 
 
 
 
1
2
3
4
5
6
import gradio as gr
def echo(name, request: gr.Request):
    print("Request headers dictionary:", request.headers)
    print("IP address:", request.client.host)
    return name
io = gr.Interface(echo, "textbox", "textbox").launch()