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 LangChainTracerFields {
    client?: Client;
    exampleId?: string;
    ignoreAgent?: boolean;
    ignoreChain?: boolean;
    ignoreLLM?: boolean;
    ignoreRetriever?: boolean;
    projectName?: string;
}

Hierarchy (view full)

Implemented by

Properties

client?: Client
exampleId?: string
ignoreAgent?: boolean
ignoreChain?: boolean
ignoreLLM?: boolean
ignoreRetriever?: boolean
projectName?: string

Generated using TypeDoc