agent-flow / src /backend /base /langflow /custom /custom_component /component_with_cache.py
truthtaicom's picture
Upload folder using huggingface_hub
4b0794d verified
Raw
History Blame Contribute Delete
296 Bytes
from langflow.custom import Component
from langflow.services.deps import get_shared_component_cache_service
class ComponentWithCache(Component):
def __init__(self, **data) -> None:
super().__init__(**data)
self._shared_component_cache = get_shared_component_cache_service()