Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
|
| 2 |
|
| 3 |
if __name__ == "__main__":
|
| 4 |
with gr.Blocks() as demo:
|
|
@@ -8,7 +8,7 @@
|
|
| 8 |
chatbot=gr.Chatbot(),
|
| 9 |
textbox=gr.Textbox(),
|
| 10 |
)
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
|
| 3 |
if __name__ == "__main__":
|
| 4 |
with gr.Blocks() as demo:
|
|
|
|
| 8 |
chatbot=gr.Chatbot(),
|
| 9 |
textbox=gr.Textbox(),
|
| 10 |
)
|
| 11 |
+
demo.launch(
|
| 12 |
+
share=True,
|
| 13 |
+
mcp_server="https://wlchee-mcp-sentiment.hf.space/gradio_api/mcp/sse" # Replace with your MCP server URL
|
| 14 |
+
)
|