langchain.js
    Preparing search index...

    Represents a numeric literal in LangChain. It has a type property set to 'numeric_literal' and a value property which is a number.

    type NumericLiteralType = {
        type: "numeric_literal";
        value: number;
    }
    Index

    Properties

    Properties

    type: "numeric_literal"
    value: number