@langchain/core
Version:
Core LangChain.js abstractions and schemas
34 lines (33 loc) • 1.21 kB
TypeScript
/**
* Checks if the provided argument is an object and not an array.
*/
export declare function isObject(obj: any): obj is object;
/**
* Checks if a provided filter is empty. The filter can be a function, an
* object, a string, or undefined.
*/
export declare function isFilterEmpty(filter: ((q: any) => any) | object | string | undefined): filter is undefined;
/**
* Checks if the provided value is an integer.
*/
export declare function isInt(value: unknown): boolean;
/**
* Checks if the provided value is a floating-point number.
*/
export declare function isFloat(value: unknown): boolean;
/**
* Checks if the provided value is a string that cannot be parsed into a
* number.
*/
export declare function isString(value: unknown): boolean;
/**
* Checks if the provided value is a boolean.
*/
export declare function isBoolean(value: unknown): boolean;
/**
* Casts a value that might be string or number to actual string or number.
* Since LLM might return back an integer/float as a string, we need to cast
* it back to a number, as many vector databases can't handle number as string
* values as a comparator.
*/
export declare function castValue(input: unknown): string | number | boolean;