mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-09-08 11:05:33 +03:00
Add GNS3ProjectInfoTool to the __all__ list in gns3_client/__init__.py to make it available for import. This ensures the tool is properly exposed as part of the public API for use in copilot agent modules.
76 lines
2.0 KiB
Python
76 lines
2.0 KiB
Python
"""
|
|
GNS3 Client Package
|
|
|
|
This package provides a Python interface for interacting with GNS3 servers.
|
|
It's adapted from the upstream gns3fy project with modifications for compatibility
|
|
with langchain and reduced dependency conflicts.
|
|
|
|
Main classes:
|
|
- Gns3Connector: Connector for GNS3 server API interaction
|
|
- Project: GNS3 Project management
|
|
- Node: GNS3 Node management
|
|
- Link: GNS3 Link management
|
|
- GNS3TopologyTool: GNS3 topology reading tool
|
|
- GNS3UpdateDrawingTool: GNS3 drawing update tool
|
|
|
|
Main functions:
|
|
- get_gns3_connector: Factory function to create Gns3Connector from environment
|
|
- get_gns3_connector_with_llm_config: Factory function to create connector AND retrieve LLM config
|
|
- get_gns3_server_host: Get GNS3 server hostname from Controller or Config
|
|
- get_llm_config: Get LLM model configuration for a user
|
|
"""
|
|
|
|
from .connector_factory import (
|
|
get_gns3_connector,
|
|
get_gns3_connector_with_llm_config,
|
|
get_gns3_server_host,
|
|
get_llm_config,
|
|
set_current_jwt_token,
|
|
get_current_jwt_token,
|
|
set_current_llm_config,
|
|
get_current_llm_config,
|
|
)
|
|
from .custom_gns3fy import (
|
|
CONSOLE_TYPES,
|
|
LINK_TYPES,
|
|
NODE_TYPES,
|
|
Gns3Connector,
|
|
Link,
|
|
Node,
|
|
Project,
|
|
)
|
|
from .gns3_topology_reader import GNS3TopologyTool
|
|
from .gns3_project_info import GNS3ProjectInfoTool
|
|
|
|
# Dynamic version management
|
|
try:
|
|
from importlib.metadata import version
|
|
|
|
__version__ = version("gns3-copilot")
|
|
except Exception:
|
|
__version__ = "unknown"
|
|
|
|
__author__ = "Guobin Yue"
|
|
__description__ = "AI-powered network automation assistant for GNS3"
|
|
__url__ = "https://github.com/yueguobin/gns3-copilot"
|
|
|
|
__all__ = [
|
|
"Gns3Connector",
|
|
"Project",
|
|
"Node",
|
|
"Link",
|
|
"NODE_TYPES",
|
|
"CONSOLE_TYPES",
|
|
"LINK_TYPES",
|
|
"GNS3TopologyTool",
|
|
"GNS3ProjectInfoTool",
|
|
"get_gns3_connector",
|
|
"get_gns3_connector_with_llm_config",
|
|
"get_gns3_server_host",
|
|
"get_llm_config",
|
|
"set_current_jwt_token",
|
|
"get_current_jwt_token",
|
|
"set_current_llm_config",
|
|
"get_current_llm_config",
|
|
]
|