From ec2dd917b48e7b6da0b8be66aa23df12f1e0e697 Mon Sep 17 00:00:00 2001 From: bolbol Date: Thu, 30 Jul 2026 15:45:03 +0000 Subject: [PATCH] feat(agents): onboarding HERMES_NABIL (acces complet, VPS Contabo) --- app/seed.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/seed.py b/app/seed.py index c0da484..869066e 100644 --- a/app/seed.py +++ b/app/seed.py @@ -101,7 +101,8 @@ async def seed_data(): "HERMES_TT": os.environ.get("API_KEY_HERMES_TT"), "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") + "GEMINI": os.environ.get("API_KEY_GEMINI"), + "HERMES_NABIL": os.environ.get("API_KEY_HERMES_NABIL") } for agent, key in keys.items(): if key: @@ -119,6 +120,7 @@ async def seed_data(): "HERMES_NYORA": (["infra", "llm", "nyora"], "hermes"), "HERMES_PERSO": (["infra", "llm", "nyora", "perso"], "hermes"), "GEMINI": (["infra", "llm", "nyora", "coding"], "antigravity"), + "HERMES_NABIL": (["infra", "llm", "nyora", "perso", "tt", "coding"], "hermes"), "NABIL": (["infra", "llm", "nyora", "perso", "tt", "coding"], "human"), } for agent_name, (scopes, agent_type) in default_agents.items():