Type Alias TaggingChainOptions
TaggingChainOptions: { callbackManager?: undefined | CallbackManager; callbacks?: undefined | Callbacks; llmKwargs: any; memory?: undefined | BaseMemory; metadata?: undefined | Record<string, unknown>; outputKey: undefined | string; outputParser: undefined | BaseLLMOutputParser<object>; prompt?: undefined | PromptTemplate<any, any>; tags?: undefined | string[]; verbose?: undefined | boolean; } Type declaration
Optional
callbackManager?: undefined | CallbackManager
Optional
callbacks?: undefined | Callbacks
llmKwargs: any
Optional
memory?: undefined | BaseMemory
Optional
metadata?: undefined | Record<string, unknown>
outputKey: undefined | string
outputParser: undefined | BaseLLMOutputParser<object>
Optional
prompt?: undefined | PromptTemplate<any, any>
Optional
tags?: undefined | string[]
Optional
verbose?: undefined | boolean
Type representing the options for creating a tagging chain.