Chain to generate tasks.

Hierarchy (view full)

Constructors

Properties

llm: LLMType

LLM Wrapper to use

outputKey: string = "text"

Key to use for output, defaults to text

prompt: BasePromptTemplate<any, BasePromptValueInterface, any>

Prompt object to use

llmKwargs?: any

Kwargs to pass to LLM

memory?: BaseMemory
outputParser?: BaseLLMOutputParser<string>

OutputParser to use

Accessors

Methods

  • Parameters

    • inputs: ChainValues[]
    • Optional config: (RunnableConfig | CallbackManager | (BaseCallbackHandler | BaseCallbackHandlerMethodsClass)[])[]

    Returns Promise<ChainValues[]>

    ⚠️ Deprecated ⚠️

    Use .batch() instead. Will be removed in 0.2.0.

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

    It is not recommended for use.

    Call the chain on all inputs in the list

  • Run the core logic of this chain and add to output if desired.

    Wraps _call and handles memory.

    Parameters

    • values: any
    • Optional config: BaseCallbackConfig | CallbackManager | (BaseCallbackHandler | BaseCallbackHandlerMethodsClass)[]

    Returns Promise<ChainValues>

  • Invoke the chain with the provided input and returns the output.

    Parameters

    • input: ChainValues

      Input values for the chain run.

    • Optional options: RunnableConfig

    Returns Promise<ChainValues>

    Promise that resolves with the output of the chain run.

  • Format prompt with values and pass to LLM

    Parameters

    • values: any

      keys to pass to prompt template

    • Optional callbackManager: CallbackManager

      CallbackManager to use

    Returns Promise<string>

    Completion from LLM.

    Example

    llm.predict({ adjective: "funny" })
    
  • Parameters

    • inputs: Record<string, unknown>
    • outputs: Record<string, unknown>
    • returnOnlyOutputs: boolean = false

    Returns Promise<Record<string, unknown>>

  • Parameters

    • input: any
    • Optional config: RunnableConfig | CallbackManager | (BaseCallbackHandler | BaseCallbackHandlerMethodsClass)[]

    Returns Promise<string>

    Deprecated

    Use .invoke() instead. Will be removed in 0.2.0.

  • Creates a new TaskCreationChain instance. It takes an object of type LLMChainInput as input, omitting the 'prompt' field. It uses the PromptTemplate class to create a new prompt based on the task creation template and the input variables. The new TaskCreationChain instance is then created with this prompt and the remaining fields from the input object.

    Parameters

    • fields: Omit<LLMChainInput<string, LLMType>, "prompt">

      An object of type LLMChainInput, omitting the 'prompt' field.

    Returns LLMChain<string, LLMType>

    A new instance of TaskCreationChain.

Generated using TypeDoc