File size: 252 Bytes
80cb4c6
 
3231395
80cb4c6
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr


def get_headers(name: str, request: gr.Request) -> str:

    return f"Hello, {name}! Your x-gradio-user is {request.headers.get('x-gradio-user', 'not provided')}"


gr.Interface(get_headers, "text", "text").launch(mcp_server=True)