langchain.js
    Preparing search index...

    Type Alias SerializedLLMChain

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

    Use newer serialization methods.

    type SerializedLLMChain = {
        _type: "llm_chain";
        llm?: BaseMessage;
        prompt?: BaseMessage;
    }
    Index

    Properties

    Properties

    _type: "llm_chain"
    prompt?: BaseMessage