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 BaseCallbackHandlerInput {
    ignoreAgent?: boolean;
    ignoreChain?: boolean;
    ignoreLLM?: boolean;
    ignoreRetriever?: boolean;
}

Hierarchy (view full)

Implemented by

Properties

ignoreAgent?: boolean
ignoreChain?: boolean
ignoreLLM?: boolean
ignoreRetriever?: boolean

Generated using TypeDoc