Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.8.4 #208

Merged
merged 1 commit into from
Feb 15, 2024
Merged

0.8.4 #208

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
10 changes: 10 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ hide:
- navigation
---



## **Version 0.8.4**
*Release date: 15 Februari, 2024*

* Update default Cohere model to `command` by [@sam-frampton](https://github.com/sam-frampton) in [#194](https://github.com/MaartenGr/KeyBERT/pull/194)
* Fix KeyLLM fails when no GPU is available by [@igor-pechersky](https://github.com/igor-pechersky) in [#201](https://github.com/MaartenGr/KeyBERT/pull/201)
* Fix `AttributeError: 'tuple' object has no attribute 'page_content'` in LangChain in [#199](https://github.com/MaartenGr/KeyBERT/pull/199)


## **Version 0.8.3**
*Release date: 29 November, 2023*

Expand Down
2 changes: 1 addition & 1 deletion keybert/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from keybert._llm import KeyLLM
from keybert._model import KeyBERT

__version__ = "0.8.3"
__version__ = "0.8.4"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
setup(
name="keybert",
packages=find_packages(exclude=["notebooks", "docs"]),
version="0.8.3",
version="0.8.4",
author="Maarten Grootendorst",
author_email="[email protected]",
description="KeyBERT performs keyword extraction with state-of-the-art transformer models.",
Expand Down
Loading