Skip to main content
Compatibility: Only available on Node.js.
This will help you get started with LocalFileStore. For detailed documentation of all LocalFileStore features and configurations head to the API reference.

Overview

The LocalFileStore is a wrapper around the fs module for storing data as key-value pairs. Each key value pair has its own file nested inside the directory passed to the .fromPath method. The file name is the key and inside contains the value of the key.
The path passed to the .fromPath must be a directory, not a file.
This file store can alter any text file in the provided directory and any subfolders.Make sure that the path you specify when initializing the store is free of other files.

Integration details

Setup

Installation

The LangChain LocalFileStore integration lives in the langchain package:

Instantiation

Now we can instantiate our byte store:
Define an encoder and decoder for converting the data to Uint8Array and back:

Usage

You can set data under keys like this using the mset method:
And you can delete data using the mdelete method:

Yielding values

If you want to get back all the keys you can call the yieldKeys method. Optionally, you can pass a key prefix to only get back keys which match that prefix.

API reference

For detailed documentation of all LocalFileStore features and configurations, head to the API reference