UNPKG

weaviate-client

Version:
15 lines (14 loc) 350 B
export interface NearVectorArgs { certainty?: number; distance?: number; vector: number[]; targetVectors?: string[]; } export default class GraphQLNearVector { private certainty?; private distance?; private vector; private targetVectors?; constructor(args: NearVectorArgs); toString(wrap?: boolean): string; }