diff --git a/api/core/plugin/manager/agent.py b/api/core/plugin/manager/agent.py index c99e71d7c7..fd83d4411c 100644 --- a/api/core/plugin/manager/agent.py +++ b/api/core/plugin/manager/agent.py @@ -18,9 +18,6 @@ class PluginAgentManager(BasePluginManager): def transformer(json_response: dict[str, Any]) -> dict: for provider in json_response.get("data", []): declaration = provider.get("declaration", {}) or {} - declaration["identity"]["name"] = ( - f"{provider.get('plugin_id')}/{declaration.get('identity', {}).get('name')}" - ) provider_name = declaration.get("identity", {}).get("name") for strategy in declaration.get("strategies", []): strategy["identity"]["provider"] = provider_name