/** * This file was auto-generated by Fern from our API Definition. */ import * as Zep from "../index.js"; export interface PatternResult { /** Human-readable description of the pattern */ description?: string; /** Edge types in the pattern structure */ edgeTypes?: string[]; /** * Resolved edges for this pattern, sorted by cross-encoder relevance. * Only populated when query is set. */ edges?: Zep.EntityEdge[]; /** Node labels in the pattern structure */ nodeLabels?: string[]; /** Raw occurrence count (always unweighted) */ occurrences?: number; /** Pattern type: relationship, path, co_occurrence, hub, cluster */ type?: string; /** Weighted sum — equals occurrences when recency_weight is "none" */ weightedScore?: number; }