FigmaFileLoader#
- class langchain_community.document_loaders.figma.FigmaFileLoader(access_token: str, ids: str, key: str)[source]#
Load Figma file.
Initialize with access token, ids, and key.
- Parameters:
access_token (str) – The access token for the Figma REST API.
ids (str) – The ids of the Figma file.
key (str) – The key for the Figma file
Methods
__init__
(access_token, ids, key)Initialize with access token, ids, and key.
A lazy loader for Documents.
aload
()Load data into Document objects.
A lazy loader for Documents.
load
()Load file
load_and_split
([text_splitter])Load Documents and split into chunks.
- __init__(access_token: str, ids: str, key: str)[source]#
Initialize with access token, ids, and key.
- Parameters:
access_token (str) – The access token for the Figma REST API.
ids (str) – The ids of the Figma file.
key (str) – The key for the Figma file
- async alazy_load() AsyncIterator[Document] #
A lazy loader for Documents.
- Return type:
AsyncIterator[Document]
- load_and_split(text_splitter: TextSplitter | None = None) list[Document] #
Load Documents and split into chunks. Chunks are returned as Documents.
Do not override this method. It should be considered to be deprecated!
- Parameters:
text_splitter (Optional[TextSplitter]) – TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.
- Returns:
List of Documents.
- Return type:
list[Document]
Examples using FigmaFileLoader