feat(components): add new custom component and chains package

- Added a new file `__init__.py` in the `components` directory to import the `CustomComponent` class from `langflow.interface.custom.custom_component`.
- Created a new package `chains` in the `components` directory.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-08-04 08:34:01 -03:00
commit bfe86b45fc
2 changed files with 4 additions and 0 deletions

View file

@ -0,0 +1,4 @@
from langflow.interface.custom.custom_component import CustomComponent
__all__ = ["CustomComponent"]