Skip to content

Commit

Permalink
Merge branch 'main' into cjkindel/query_vector
Browse files Browse the repository at this point in the history
  • Loading branch information
cjkindel authored Jan 3, 2025
2 parents 59f0717 + 36394cc commit c4d7ee6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- `BaseVectorStoreDriver.query_vector` for querying vector stores with vectors.

## [1.1.1] - 2025-01-03

### Fixed

- Incorrect deprecation warning on `ToolkitTask`.

## [1.1.0] - 2024-12-31

### Added
Expand Down
2 changes: 1 addition & 1 deletion griptape/tasks/toolkit_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class ToolkitTask(PromptTask):
def try_run(self) -> BaseArtifact:
warnings.warn(
"`PromptTask` is deprecated and will be removed in a future release. `PromptTask` is a drop-in replacement.",
"`ToolkitTask` is deprecated and will be removed in a future release. `PromptTask` is a drop-in replacement.",
DeprecationWarning,
stacklevel=2,
)
Expand Down

0 comments on commit c4d7ee6

Please sign in to comment.