From 168e22b01ec305395c7f6a2f3950630f92ea3a43 Mon Sep 17 00:00:00 2001 From: mohammed naji Date: Mon, 27 Apr 2026 12:49:35 +0400 Subject: [PATCH] test: lock retrieval seed ranking behavior Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- src/runtime/retrieve.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/runtime/retrieve.ts b/src/runtime/retrieve.ts index ff42184..23a6f71 100644 --- a/src/runtime/retrieve.ts +++ b/src/runtime/retrieve.ts @@ -290,7 +290,6 @@ function relationBetweenNodes(graph: KnowledgeGraph, source: string, target: str function isPrimaryExpansionRelation(relation: string): boolean { return relation === 'calls' || relation === 'imports_from' || relation === 'defines' || relation === 'contains' } - export function retrieveContext(graph: KnowledgeGraph, options: RetrieveOptions): RetrieveResult { const { question, budget } = options const questionTokens = tokenizeQuestion(question)