Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Manavraj
/
Troubleshoot_MCP
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
678052a
Troubleshoot_MCP
/
app.py
Manavraj
Update app.py
678052a
verified
3 months ago
raw
Copy download link
history
blame
Safe
174 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello,
{name}
!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
demo.launch()