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 {
    autoClose?: boolean;
    excludeNames?: string[];
    excludeTags?: string[];
    excludeTypes?: string[];
    ignoreAgent?: boolean;
    ignoreChain?: boolean;
    ignoreLLM?: boolean;
    ignoreRetriever?: boolean;
    includeNames?: string[];
    includeTags?: string[];
    includeTypes?: string[];
}

Hierarchy (view full)

Properties

autoClose?: boolean
excludeNames?: string[]
excludeTags?: string[]
excludeTypes?: string[]
ignoreAgent?: boolean
ignoreChain?: boolean
ignoreLLM?: boolean
ignoreRetriever?: boolean
includeNames?: string[]
includeTags?: string[]
includeTypes?: string[]

Generated using TypeDoc