agsamantha/node_modules/langchain/dist/experimental/babyagi/task_creation.d.ts
2024-10-02 15:15:21 -05:00

16 lines
809 B
TypeScript

import { LLMChain, LLMChainInput } from "../../chains/llm_chain.js";
/** Chain to generate tasks. */
export declare class TaskCreationChain extends LLMChain {
static lc_name(): string;
/**
* 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.
* @param fields An object of type LLMChainInput, omitting the 'prompt' field.
* @returns A new instance of TaskCreationChain.
*/
static fromLLM(fields: Omit<LLMChainInput, "prompt">): LLMChain;
}