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 representing the options for creating a tagging chain.

Type declaration

  • OptionalcallbackManager?: undefined | CallbackManager

    Use callbacks instead

  • Optionalcallbacks?: undefined | Callbacks
  • llmKwargs: any
  • Optionalmemory?: undefined | BaseMemory
  • Optionalmetadata?: undefined | Record<string, unknown>
  • outputKey: undefined | string
  • outputParser: undefined | BaseLLMOutputParser<object>
  • Optionalprompt?: undefined | PromptTemplate<any, any>
  • Optionaltags?: undefined | string[]
  • Optionalverbose?: undefined | boolean