langchain.js
    Preparing search index...

    Represents an array literal in LangChain. It has a type property set to 'array_literal' and a values property which is an array of ArgumentsType.

    type ArrayLiteralType = {
        type: "array_literal";
        values: ArgumentsType[];
    }
    Index

    Properties

    Properties

    type: "array_literal"
    values: ArgumentsType[]