langchain_community.document_loaders.figma
.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.
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: Optional[TextSplitter] = 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]