Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- fix: use env var configured multimodal library override paths when loading shared libraries by @navratil-matej in #1782
- feat: add Jinja2 loop controls to chat templates by @handshape in #2018
- fix: avoid cleanup errors for partially initialized `LlamaModel` objects by @usernames122 in #2173
- fix: suppress stdout and stderr in Jupyter notebooks by @Anai-Guo in #2181
Expand Down
2 changes: 1 addition & 1 deletion llama_cpp/llava_cpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
_libllava_base_path = (
pathlib.Path(os.path.abspath(os.path.dirname(__file__))) / "lib"
if _libllava_override_path is None
else pathlib.Path()
else pathlib.Path(_libllava_override_path)
)

# Load the library
Expand Down
2 changes: 1 addition & 1 deletion llama_cpp/mtmd_cpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
_libmtmd_base_path = (
pathlib.Path(os.path.abspath(os.path.dirname(__file__))) / "lib"
if _libmtmd_override_path is None
else pathlib.Path()
else pathlib.Path(_libmtmd_override_path)
)

# Load the library
Expand Down
Loading