Spaces:
Runtime error
Runtime error
Commit
·
b1845bc
1
Parent(s):
f3c6459
Update color
Browse filesSigned-off-by: Aivin V. Solatorio <avsolatorio@gmail.com>
- mcp_remote_client.py +6 -3
mcp_remote_client.py
CHANGED
|
@@ -395,22 +395,25 @@ def gradio_interface(
|
|
| 395 |
client = MCPClientWrapper()
|
| 396 |
custom_css = """
|
| 397 |
.gradio-container {
|
| 398 |
-
background-color: #
|
| 399 |
}
|
| 400 |
.message-row.panel.bot-row {
|
| 401 |
-
background-color: #
|
| 402 |
}
|
| 403 |
.message-row.panel.user-row {
|
| 404 |
background-color: #fff !important;
|
| 405 |
}
|
| 406 |
.user {
|
|
|
|
|
|
|
|
|
|
| 407 |
background-color: #fff !important;
|
| 408 |
}
|
| 409 |
footer{display:none !important}
|
| 410 |
"""
|
| 411 |
|
| 412 |
with gr.Blocks(title="WDI MCP Client", css=custom_css) as demo:
|
| 413 |
-
gr.Markdown("
|
| 414 |
# gr.Markdown("Connect to the WDI MCP server and chat with the assistant")
|
| 415 |
|
| 416 |
with gr.Accordion(
|
|
|
|
| 395 |
client = MCPClientWrapper()
|
| 396 |
custom_css = """
|
| 397 |
.gradio-container {
|
| 398 |
+
background-color: #fff !important;
|
| 399 |
}
|
| 400 |
.message-row.panel.bot-row {
|
| 401 |
+
background-color: #fff !important;
|
| 402 |
}
|
| 403 |
.message-row.panel.user-row {
|
| 404 |
background-color: #fff !important;
|
| 405 |
}
|
| 406 |
.user {
|
| 407 |
+
background-color: #f1f6ff !important;
|
| 408 |
+
}
|
| 409 |
+
.bot {
|
| 410 |
background-color: #fff !important;
|
| 411 |
}
|
| 412 |
footer{display:none !important}
|
| 413 |
"""
|
| 414 |
|
| 415 |
with gr.Blocks(title="WDI MCP Client", css=custom_css) as demo:
|
| 416 |
+
gr.Markdown("# Development Data Chat")
|
| 417 |
# gr.Markdown("Connect to the WDI MCP server and chat with the assistant")
|
| 418 |
|
| 419 |
with gr.Accordion(
|