/** * This file was auto-generated by Fern from our API Definition. */ export interface EntityNode { /** Additional attributes of the node. Dependent on node labels */ attributes?: Record; /** Creation time of the node */ createdAt: string; /** Labels associated with the node */ labels?: string[]; /** Name of the node */ name: string; /** * Relevance is an experimental rank-aligned score in [0,1] derived from Score via logit transformation. * Only populated when using cross_encoder reranker; omitted for other reranker types (e.g., RRF). */ relevance?: number; /** Score is the reranker output: sigmoid-distributed logits [0,1] when using cross_encoder reranker, or RRF ordinal rank when using rrf reranker */ score?: number; /** Regional summary of surrounding edges */ summary: string; /** UUID of the node */ uuid: string; }