Duplicated from tomliu/airadio
0a95c93
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()