/** * This file was auto-generated by Fern from our API Definition. */ import * as Zep from "../index.js"; export interface DetectConfig { /** Detect tightly interconnected groups (triangle topology) */ clusters?: Zep.ClusterDetectConfig; /** Detect node types that co-occur within k hops */ coOccurrences?: Zep.CoOccurrenceDetectConfig; /** Detect highly connected hub nodes (star topology) */ hubs?: Zep.HubDetectConfig; /** Detect frequent multi-hop connection paths */ paths?: Zep.PathDetectConfig; /** Detect common (source_label, edge_type, target_label) relationship triples */ relationships?: Zep.RelationshipDetectConfig; }