Skip to content

Commit 6be50df

Browse files
committed
Remove unused import and commented-out code for parallel API key handling in gemini_settings.py
1 parent 796b96c commit 6be50df

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

kady_agent/gemini_settings.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"""
77

88
import json
9-
import os
109
from pathlib import Path
1110

1211
CUSTOM_MCPS_PATH = Path("user_config/custom_mcps.json")
@@ -23,12 +22,6 @@ def build_default_settings() -> dict:
2322
},
2423
},
2524
}
26-
parallel_key = os.getenv("PARALLEL_API_KEY")
27-
if parallel_key:
28-
settings["mcpServers"]["parallel-search"] = {
29-
"httpUrl": "https://search-mcp.parallel.ai/mcp",
30-
"headers": {"Authorization": f"Bearer {parallel_key}"},
31-
}
3225
return settings
3326

3427

0 commit comments

Comments
 (0)