Skip to content

Commit 34393e5

Browse files
committed
make options an explicit kwarg
Signed-off-by: Panos Vagenas <[email protected]>
1 parent 1553a12 commit 34393e5

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

docling/models/base_model.py

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ class BaseModelWithOptions(Protocol):
1414
@classmethod
1515
def get_options_type(cls) -> Type[BaseOptions]: ...
1616

17+
def __init__(self, *, options: BaseOptions, **kwargs): ...
18+
1719

1820
class BasePageModel(ABC):
1921
@abstractmethod

docling/models/base_ocr_model.py

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
class BaseOcrModel(BasePageModel, BaseModelWithOptions):
2323
def __init__(
2424
self,
25+
*,
2526
enabled: bool,
2627
artifacts_path: Optional[Path],
2728
options: OcrOptions,

docling/models/factories/base_factory.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ def get_enum(self) -> enum.Enum:
3939
def classes(self):
4040
return self._classes
4141

42-
def create_instance(self, options: BaseOptions, *args, **kwargs) -> A:
42+
def create_instance(self, options: BaseOptions, **kwargs) -> A:
4343
try:
4444
_cls = self._classes[type(options)]
45-
return _cls(*args, **kwargs)
45+
return _cls(options=options, **kwargs)
4646
except KeyError:
4747
raise RuntimeError(self._err_msg_on_class_not_found(options.kind))
4848

docling/models/picture_description_base_model.py

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class PictureDescriptionBaseModel(
3232

3333
def __init__(
3434
self,
35+
*,
3536
enabled: bool,
3637
enable_remote_services: bool,
3738
artifacts_path: Optional[Union[Path, str]],

0 commit comments

Comments
 (0)