Update config.py
Browse files
config.py
CHANGED
|
@@ -143,6 +143,9 @@ class AppConfig:
|
|
| 143 |
# UI Configuration
|
| 144 |
GRADIO_THEME = "ocean"
|
| 145 |
DEBUG_MODE = True
|
|
|
|
|
|
|
|
|
|
| 146 |
|
| 147 |
# MCP Server recommendations
|
| 148 |
OPTIMAL_MCP_SERVER_COUNT = 6 # Recommended maximum for good performance
|
|
@@ -408,4 +411,4 @@ video {
|
|
| 408 |
background: #f0f0f0;
|
| 409 |
border-radius: 4px;
|
| 410 |
}
|
| 411 |
-
"""
|
|
|
|
| 143 |
# UI Configuration
|
| 144 |
GRADIO_THEME = "ocean"
|
| 145 |
DEBUG_MODE = True
|
| 146 |
+
# Gradio hosting defaults (can be overridden by env GRADIO_SERVER_NAME/PORT)
|
| 147 |
+
GRADIO_SERVER_NAME = "localhost"
|
| 148 |
+
GRADIO_SERVER_PORT = 7860
|
| 149 |
|
| 150 |
# MCP Server recommendations
|
| 151 |
OPTIMAL_MCP_SERVER_COUNT = 6 # Recommended maximum for good performance
|
|
|
|
| 411 |
background: #f0f0f0;
|
| 412 |
border-radius: 4px;
|
| 413 |
}
|
| 414 |
+
"""
|