Files
LlamaIndexTS/apps/docs/docs/modules/high_level/data_loader.md
T
2023-07-18 20:35:37 -06:00

451 B

sidebar_position
sidebar_position
1

Reader / Loader

LlamaIndex.TS supports easy loading of files from folders using the SimpleDirectoryReader class. Currently, .txt and .pdf files are supported, with more planned in the future!

import { SimpleDirectoryReader } from "llamaindex";

documents = new SimpleDirectoryReader().loadData("./data");

API Reference