diff --git a/src/raglite/_eval.py b/src/raglite/_eval.py index 49b36f6..d9481fb 100644 --- a/src/raglite/_eval.py +++ b/src/raglite/_eval.py @@ -227,7 +227,7 @@ def __init__(self, config: RAGLiteConfig): self.config = config or RAGLiteConfig() def embed_query(self, text: str) -> list[float]: - # Embed the query text using RAGLite's embedding function + # Embed the input text with RAGLite's embedding function. embeddings = embed_sentences([text], config=self.config) return embeddings[0].tolist() # type: ignore[no-any-return]