Skip to content
Open
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: add get_reranker to _ResourceManager in integration test
The ResourceManager protocol requires get_reranker but the test's
local _ResourceManager was missing it, causing isinstance check to
fail at runtime.
  • Loading branch information
o-love committed Apr 8, 2026
commit f7ae24eda662ccb23fae2706e78a906aa12353d3
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ async def get_embedder(self, _: str) -> Embedder:
async def get_language_model(self, _: str) -> LanguageModel:
return llm_model

async def get_reranker(self, _: str):
return None

mem = SemanticService(
SemanticService.Params(
semantic_storage=semantic_storage,
Expand Down
Loading