feat(agent): register DSH identity in seed and fallback scopes

This commit is contained in:
Antigravity
2026-08-24 21:49:52 +01:00
committed by Nabil Derouiche
parent 210669ef00
commit e7f78f8d3a
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -102,7 +102,8 @@ async def seed_data():
"HERMES_NYORA": os.environ.get("API_KEY_HERMES_NYORA"),
"HERMES_PERSO": os.environ.get("API_KEY_HERMES_PERSO"),
"GEMINI": os.environ.get("API_KEY_GEMINI"),
"HERMES_NABIL": os.environ.get("API_KEY_HERMES_NABIL")
"HERMES_NABIL": os.environ.get("API_KEY_HERMES_NABIL"),
"DSH": os.environ.get("API_KEY_DSH")
}
for agent, key in keys.items():
if key:
@@ -120,6 +121,7 @@ async def seed_data():
"HERMES_NYORA": (["infra", "llm", "nyora"], "hermes"),
"HERMES_PERSO": (["infra", "llm", "nyora", "perso"], "hermes"),
"GEMINI": (["infra", "llm", "nyora", "coding"], "antigravity"),
"DSH": (["infra", "llm", "nyora", "coding"], "dsh"),
"HERMES_NABIL": (["infra", "llm", "nyora", "perso", "tt", "coding"], "hermes"),
"NABIL": (["infra", "llm", "nyora", "perso", "tt", "coding"], "human"),
}