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

add the change log for v0.2.4 #240

Merged
merged 1 commit into from
Oct 27, 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
10 changes: 10 additions & 0 deletions adalflow/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [0.2.4] - 2024-10-27

### Added
- `BedrockAPIClient` to support the AWS Bedrock API. Note: still need more testing and documentation.

### Fixed
- `Generator` cache path: fixed the issue with invalid window path with incompaticle special characters: https://github.com/SylphAI-Inc/AdalFlow/issues/237
- Wrong score in the diagnose file as `prepare_eval` is not passing classification label 0 to the `eval_input`.


## [0.2.3] - 2024-09-20

### Rename
Expand Down
2 changes: 1 addition & 1 deletion adalflow/adalflow/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.2.3"
__version__ = "0.2.4"

from adalflow.core.component import Component, fun_to_component
from adalflow.core.container import Sequential
Expand Down
2 changes: 1 addition & 1 deletion adalflow/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "adalflow"

version = "0.2.3"
version = "0.2.4"
description = "The Library to Build and Auto-optimize Any LLM Task Pipeline"
authors = ["Li Yin <[email protected]>"]
readme = "README.md"
Expand Down
Loading