Spaces:
Runtime error
Runtime error
Commit ·
3479049
1
Parent(s): 9c9bc20
use default API key from configuration in FleetMind API Key input
Browse files
app.py
CHANGED
|
@@ -1146,7 +1146,7 @@ def create_app() -> gr.Blocks:
|
|
| 1146 |
)
|
| 1147 |
api_key = gr.Textbox(
|
| 1148 |
label="FleetMind API Key",
|
| 1149 |
-
value=
|
| 1150 |
type="password",
|
| 1151 |
placeholder="fm_xxxxx...",
|
| 1152 |
)
|
|
|
|
| 1146 |
)
|
| 1147 |
api_key = gr.Textbox(
|
| 1148 |
label="FleetMind API Key",
|
| 1149 |
+
value=Config.MCP_API_KEY, # Use default from config
|
| 1150 |
type="password",
|
| 1151 |
placeholder="fm_xxxxx...",
|
| 1152 |
)
|