From 33df674cbfa4603c964b8612331ed8efa7c7443f Mon Sep 17 00:00:00 2001 From: YueGuobin Date: Thu, 5 Mar 2026 10:55:10 +0800 Subject: [PATCH] feat(agent): remove GNS3TopologyTool from available tools list The GNS3TopologyTool has been removed from the list of available tools for the agent. This change simplifies the toolset by eliminating a tool that is no longer needed or supported in the current workflow. --- gns3server/agent/gns3_copilot/agent/gns3_copilot.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gns3server/agent/gns3_copilot/agent/gns3_copilot.py b/gns3server/agent/gns3_copilot/agent/gns3_copilot.py index 686051fc4..7ad55e63c 100644 --- a/gns3server/agent/gns3_copilot/agent/gns3_copilot.py +++ b/gns3server/agent/gns3_copilot/agent/gns3_copilot.py @@ -76,7 +76,6 @@ logger = logging.getLogger(__name__) # Define the available tools for the agent tools = [ GNS3TemplateTool(), # Get GNS3 node templates - GNS3TopologyTool(), # Read GNS3 topology information GNS3CreateNodeTool(), # Create new nodes in GNS3 GNS3LinkTool(), # Create links between nodes GNS3StartNodeTool(), # Start GNS3 nodes