Spaces:
Sleeping
Sleeping
File size: 614 Bytes
b62fcf9 d9d7bbc b62fcf9 d9d7bbc b62fcf9 d9d7bbc b62fcf9 d9d7bbc b62fcf9 d9d7bbc b62fcf9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
import json
def echo(text, request: gr.Request):
output_text = json.dumps({"text": text})
if request:
print("Request headers dictionary:", request.headers)
output_text = json.dumps({"headers": dict(request.headers)})
print("IP address:", request.client.host)
output_text = json.dumps({"headers": dict(request.headers)})
print("Query parameters:", dict(request.query_params))
output_text = json.dumps({"query_params": dict(request.query_params)})
return output_text
io = gr.Interface(echo, "textbox", "textbox").launch(share=True)
|