langchain.js
    Preparing search index...

    Type Alias EntrypointOptions

    Options for the entrypoint function

    type EntrypointOptions = {
        cache?: MemorySaver;
        checkpointer?: MemorySaver;
        name: string;
        store?: MemorySaver;
    }
    Index

    Properties

    cache?: MemorySaver

    The cache for the entrypoint. Used to cache values between workflow runs.

    checkpointer?: MemorySaver

    The checkpointer for the entrypoint. Used to save and restore state between invocations of the workflow.

    name: string

    The name of the entrypoint, analogous to the node name in StateGraph. This name is used for logging, debugging, and checkpoint identification.

    store?: MemorySaver

    The store for the entrypoint. Used to persist data across workflow runs.