From 393dd3382f96f9e99e086bc597d82a2eedad118f Mon Sep 17 00:00:00 2001 From: Chandra Irugalbandara Date: Mon, 16 Sep 2024 19:02:42 +0000 Subject: [PATCH] Bump version to 0.1.4 and add new features and improvements - 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 --- docs/changelog.md | 8 +++++++- pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 3b66161..521375b 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index b23098e..c325a82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] maintainers = ["Chandra Irugalbandara "]