2024-08-30 14:23:14 +08:00
|
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from core.tools.tool_file_manager import ToolFileManager
|
|
|
|
|
2024-09-29 00:14:44 +08:00
|
|
|
tool_file_manager: dict[str, Any] = {"manager": None}
|
2024-01-23 19:58:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ToolFileParser:
|
|
|
|
@staticmethod
|
2024-09-10 17:00:20 +08:00
|
|
|
def get_tool_file_manager() -> "ToolFileManager":
|
|
|
|
return tool_file_manager["manager"]
|