Skip to content

Commit

Permalink
Fix backwards compatibility issue with get_settings (#1003)
Browse files Browse the repository at this point in the history
  • Loading branch information
RaynorChavez authored Oct 14, 2024
1 parent 9477e80 commit a8bafb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/marqo/tensor_search/models/index_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ class IndexSettings(StrictBaseModel):
imagePreprocessing: core.ImagePreProcessing = core.ImagePreProcessing(
patchMethod=None
)
videoPreprocessing: core.VideoPreProcessing = core.VideoPreProcessing(
videoPreprocessing: Optional[core.VideoPreProcessing] = core.VideoPreProcessing(
splitLength=20,
splitOverlap=3,
)
audioPreprocessing: core.AudioPreProcessing = core.AudioPreProcessing(
audioPreprocessing: Optional[core.AudioPreProcessing] = core.AudioPreProcessing(
splitLength=10,
splitOverlap=3,
)
Expand Down
2 changes: 1 addition & 1 deletion src/marqo/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.12.2"
__version__ = "2.12.3"

def get_version() -> str:
return f"{__version__}"

0 comments on commit a8bafb2

Please sign in to comment.