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

chore: release extension 0.6.0 #285

Merged
merged 1 commit into from
Dec 10, 2024
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
16 changes: 16 additions & 0 deletions projects/extension/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@

# Pgai extension release notes

## 0.6.0 (2024-12-10)

This release adds support for using Voyage AI in a vectorizer, and loading
datasets from hugging face.

### New features and improvements

- Use the `ai.voyageai_embed`, and `ai.embedding_voyageai` functions to use Voyage AI for vector embeddings 1b56d62295faf996697db75f3a9ac9391869a3bb.
- Add `ai.load_dataset` to load datasets from hugging face 29469388f22d15ae79e293f8151ef0a730820b3c.
- Change the type of `keep_alive` parameter from `float8` to `text` 0c747418efc70d656330f605195bf0d2c164bec2
- Remove `truncate` parameter from Ollama/Voyage APIs ecda03cf5d27f750db534801719413d0abcfa557

### Fixes

- Fix Anthropic tool use 2cb2fe9c55f44da82e605a47194428a11f77f9de.

## 0.5.0 (2024-11-26)

This release adds support for using Ollama in a vectorizer, and fixes a bug
Expand Down
2 changes: 1 addition & 1 deletion projects/extension/ai/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.1-dev"
__version__ = "0.6.0"
2 changes: 1 addition & 1 deletion projects/extension/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
def versions() -> list[str]:
# ADD NEW VERSIONS TO THE FRONT OF THIS LIST! STAY SORTED PLEASE
return [
"0.5.1-dev",
"0.6.0", # released
"0.5.0", # released
"0.4.1", # released
"0.4.0", # released
Expand Down
Loading
Loading