Skip to content

Commit

Permalink
Bump version to 0.1.4 and add new features and improvements
Browse files Browse the repository at this point in the history
- Added Helper Functions to create new classes and enums easily. Helpful when creating classes with large number of parameters or enums with large number of values.
- Retries are now available in the `enhance` decorator. This will allow the function to retry the LLM inference if it fails, increasing the chances of getting a correct answer.
- Updated Documentation with the new features
- Added more examples in the `examples` folder
  • Loading branch information
chandralegend committed Sep 16, 2024
1 parent f284119 commit 393dd33
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# RELEASES

## `0.1.3` - 2024-09-14
## `0.1.4` - 2024-09-17
- [FEATURE] Added Helper Functions to create new classes and enums easily. Helpful when creating classes with large number of parameters or enums with large number of values.
- [FEATURE] Retries are now available in the `enhance` decorator. This will allow the function to retry the LLM inference if it fails, increasing the chances of getting a correct answer.
- [CHORE] Updated Documentation with the new features
- [CHORE] Added more examples in the `examples` folder

## `0.1.3` - 2024-09-16
- [FIX] Much better performance

## `0.1.2` - 2024-09-14
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "semantix"
version = "0.1.3"
version = "0.1.4"
description = "Give Superpowers to your python function. GenAI Application development made easy."
authors = ["Chandra Irugalbandara <[email protected]>"]
maintainers = ["Chandra Irugalbandara <[email protected]>"]
Expand Down

0 comments on commit 393dd33

Please sign in to comment.