Interface LLMChainInput<T, Model>

Interface for the input parameters of the LLMChain class.

Type Parameters

  • T extends string | object = string

  • Model extends LLMType = LLMType

Hierarchy

Implemented by

Properties

llm: Model

LLM Wrapper to use

prompt: BasePromptTemplate

Prompt object to use

callbackManager?: any

⚠️ Deprecated ⚠️

Use callbacks instead

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

It is not recommended for use.

llmKwargs?: CallOptionsIfAvailable<Model>

Kwargs to pass to LLM

memory?: any
outputKey?: string

Key to use for output, defaults to text

outputParser?: any

OutputParser to use

Generated using TypeDoc