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

interface LLMRouterChainInput {
    llmChain: LLMChain<RouterOutputSchema, LLMType>;
    callbackManager?: CallbackManager;
    memory?: BaseMemory;
}

Hierarchy (view full)

Implemented by

Properties

llmChain: LLMChain<RouterOutputSchema, LLMType>
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