agsamantha/node_modules/langchain/dist/schema/query_constructor.d.ts
2024-10-02 15:15:21 -05:00

12 lines
391 B
TypeScript

/**
* A simple data structure that holds information about an attribute. It
* is typically used to provide metadata about attributes in other classes
* or data structures within the LangChain framework.
* @deprecated
*/
export declare class AttributeInfo {
name: string;
type: string;
description: string;
constructor(name: string, type: string, description: string);
}