Spaces:
Sleeping
Sleeping
| 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) |