feat(frontend_node): add custom_components to the list of exported modules

The custom_components module is now included in the list of exported modules in the frontend_node package. This change allows other modules or packages to import and use the custom components provided by the frontend_node package.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-06 23:57:47 -03:00
commit 93dbf552f0

View file

@ -9,6 +9,7 @@ from langflow.template.frontend_node import (
vectorstores,
documentloaders,
textsplitters,
custom_components,
)
__all__ = [
@ -22,4 +23,5 @@ __all__ = [
"vectorstores",
"documentloaders",
"textsplitters",
"custom_components",
]