Type Alias EntrypointOptions

EntrypointOptions: {
    checkpointer?: BaseCheckpointSaver;
    name: string;
    store?: BaseStore;
}

Options for the entrypoint function

Type declaration

  • Optionalcheckpointer?: BaseCheckpointSaver

    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.

  • Optionalstore?: BaseStore

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