Spaces:
Runtime error
Runtime error
File size: 286 Bytes
63deadc |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from typing import Any
from langchain._api import create_importer
_importer = create_importer(
__package__, fallback_module="langchain_community.agent_toolkits.load_tools"
)
def __getattr__(name: str) -> Any:
"""Look up attributes dynamically."""
return _importer(name)
|