langchain.js
    Preparing search index...

    Class that provides an in-memory file storage system. It extends the BaseFileStore class and implements its readFile and writeFile methods. This class is typically used in scenarios where temporary, in-memory file storage is needed, such as during testing or for caching files in memory for quick access.

    Hierarchy

    • BaseFileStore
      • InMemoryFileStore
    Index

    Constructors

    Properties

    Methods

    Constructors

    Properties

    lc_namespace: string[] = ...

    Methods

    • Retrieves the contents of a file given its path. If the file does not exist, it throws an error.

      Parameters

      • path: string

        The path of the file to read.

      Returns Promise<string>

      The contents of the file as a string.

    • Writes contents to a file at a given path. If the file already exists, it overwrites the existing contents.

      Parameters

      • path: string

        The path of the file to write.

      • contents: string

        The contents to write to the file.

      Returns Promise<void>

      Void