Spaces:
Sleeping
Sleeping
File size: 277 Bytes
cfd3735 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from langchain.document_loaders.figma import FigmaFileLoader
ACCESS_TOKEN = ""
IDS = ""
KEY = ""
def test_figma_file_loader() -> None:
"""Test Figma file loader."""
loader = FigmaFileLoader(ACCESS_TOKEN, IDS, KEY)
docs = loader.load()
assert len(docs) == 1
|