mashrur950 commited on
Commit
3479049
·
1 Parent(s): 9c9bc20

use default API key from configuration in FleetMind API Key input

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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="", # User must enter API key manually
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
  )