Feature: Configuring search modes for RAG - Address review

Signed-off-by: Varsha Prasad Narsing <varshaprasad96@gmail.com>
This commit is contained in:
Varsha Prasad Narsing 2025-05-21 10:57:37 -07:00
parent 2060fdba7f
commit 6a2a0836c5
11 changed files with 11 additions and 13 deletions

View file

@ -181,7 +181,7 @@ class EmbeddingIndex(ABC):
raise NotImplementedError()
@abstractmethod
async def query_keyword(self, query_string: str | None, k: int, score_threshold: float) -> QueryChunksResponse:
async def query_keyword(self, query_string: str, k: int, score_threshold: float) -> QueryChunksResponse:
raise NotImplementedError()
@abstractmethod