1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 15:04:50 +08:00

Add Help Menu in NodeLibrarySidebarTab (#8179)

This commit is contained in:
Benjamin Lu
2025-06-01 04:32:32 -04:00
committed by GitHub
parent d062fcc5c0
commit 180db6753f
3 changed files with 21 additions and 0 deletions

View File

@@ -205,6 +205,19 @@ comfyui-workflow-templates is not installed.
""".strip()
)
@classmethod
def embedded_docs_path(cls) -> str:
"""Get the path to embedded documentation"""
try:
import comfyui_embedded_docs
return str(
importlib.resources.files(comfyui_embedded_docs) / "docs"
)
except ImportError:
logging.info("comfyui-embedded-docs package not found")
return None
@classmethod
def parse_version_string(cls, value: str) -> tuple[str, str, str]:
"""