Interface for the input parameters of the ViolationOfExpectationsChain class.

interface ViolationOfExpectationsChainInput {
    llm: ChatOpenAI;
    retriever: BaseRetrieverInterface<Record<string, any>>;
    callbackManager?: CallbackManager;
    memory?: BaseMemory;
}

Hierarchy (view full)

Implemented by

Properties

llm: ChatOpenAI

The LLM to use

retriever: BaseRetrieverInterface<Record<string, any>>

The retriever to use for retrieving stored thoughts and insights.

callbackManager?: CallbackManager

⚠️ Deprecated ⚠️

Use callbacks instead

This feature is deprecated and will be removed in the future.

It is not recommended for use.

memory?: BaseMemory

Generated using TypeDoc