langchain.js
    Preparing search index...

    Interface for the input parameters of the BaseCallbackHandler class. It allows to specify which types of events should be ignored by the callback handler.

    interface LogStreamCallbackHandlerInput {
        _awaitHandler?: boolean;
        _schemaFormat?: SchemaFormat;
        autoClose?: boolean;
        excludeNames?: string[];
        excludeTags?: string[];
        excludeTypes?: string[];
        ignoreAgent?: boolean;
        ignoreChain?: boolean;
        ignoreCustomEvent?: boolean;
        ignoreLLM?: boolean;
        ignoreRetriever?: boolean;
        includeNames?: string[];
        includeTags?: string[];
        includeTypes?: string[];
        raiseError?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _awaitHandler?: boolean
    _schemaFormat?: SchemaFormat
    autoClose?: boolean
    excludeNames?: string[]
    excludeTags?: string[]
    excludeTypes?: string[]
    ignoreAgent?: boolean
    ignoreChain?: boolean
    ignoreCustomEvent?: boolean
    ignoreLLM?: boolean
    ignoreRetriever?: boolean
    includeNames?: string[]
    includeTags?: string[]
    includeTypes?: string[]
    raiseError?: boolean