langchain.js
    Preparing search index...

    Represents a boolean literal in LangChain. It has a type property set to 'boolean_literal' and a value property which is a boolean.

    type BooleanLiteralType = {
        type: "boolean_literal";
        value: boolean;
    }
    Index

    Properties

    Properties

    type: "boolean_literal"
    value: boolean