Type alias SerializedLLMChain

SerializedLLMChain: {
    _type: "llm_chain";
    llm?: SerializedLLM;
    prompt?: SerializedBasePromptTemplate;
}

Represents the serialized form of an LLMChain. It includes properties such as _type, llm, and prompt.

Type declaration

  • _type: "llm_chain"
  • Optional llm?: SerializedLLM
  • Optional prompt?: SerializedBasePromptTemplate

Generated using TypeDoc