An interface that extends the default ChainInputs interface and adds an additional "llmChain" property.

interface LLMRouterChainInput {
    llmChain: LLMChain<RouterOutputSchema, any>;
    callbackManager?: any;
    memory?: any;
}

Hierarchy (view full)

Implemented by

Properties

callbackManager?: any

Use callbacks instead

memory?: any