mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
9b42ba8f10
* changes * changes * revert changes * changes * add changeset * notebooks script * changes * changes --------- Co-authored-by: Ali Abid <aliabid94@gmail.com> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com>
14 lines
318 B
Python
14 lines
318 B
Python
import gradio as gr
|
|
|
|
def predict(text, request: gr.Request):
|
|
headers = request.headers
|
|
host = request.client.host
|
|
user_agent = request.headers["user-agent"]
|
|
return {
|
|
"ip": host,
|
|
"user_agent": user_agent,
|
|
"headers": headers,
|
|
}
|
|
|
|
gr.Interface(predict, "text", "json").launch()
|