airadio / app.py
tomliu's picture
Create app.py
d69bf39
raw
history blame
238 Bytes
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()