Skip to content

Commit 18c080e

Browse files
committed
chore: format & minor fixes
1 parent a81d344 commit 18c080e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "RAGatouille"
3-
version = "0.0.6b4"
3+
version = "0.0.6b5"
44
description = "Library to facilitate the use of state-of-the-art retrieval models in common RAG contexts."
55
authors = ["Benjamin Clavie <ben@clavie.eu>"]
66
readme = "README.md"

ragatouille/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.6b4"
1+
__version__ = "0.0.6b5"
22
from .RAGPretrainedModel import RAGPretrainedModel
33
from .RAGTrainer import RAGTrainer
44

ragatouille/models/colbert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ def search(
438438
k: int = 10,
439439
force_fast: bool = False,
440440
zero_index_ranks: bool = False,
441-
doc_ids: Optional[List[str]] = None
441+
doc_ids: Optional[List[str]] = None,
442442
):
443443
if self.searcher is None or (
444444
index_name is not None and self.index_name != index_name

0 commit comments

Comments
 (0)