Skip to content

Commit

Permalink
chore: release ragbits v0.2.0 (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhordynski authored Oct 23, 2024
1 parent 2d92dae commit 99d91f9
Show file tree
Hide file tree
Showing 10 changed files with 88 additions and 23 deletions.
7 changes: 7 additions & 0 deletions packages/ragbits-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Unreleased

## 0.2.0 (2024-10-23)

### Changed

- Improved performance by lazy-loading the modules (#111 #113 #120)
- ragbits-core updated to version v0.2.0

## 0.1.0 (2024-10-08)

### Added
Expand Down
7 changes: 2 additions & 5 deletions packages/ragbits-cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ragbits-cli"
version = "0.1.0"
version = "0.2.0"
description = "A CLI application for ragbits - building blocks for rapid development of GenAI applications"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -30,10 +30,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"typer>=0.12.5",
"ragbits-core==0.1.0"
]
dependencies = ["typer>=0.12.5", "ragbits-core==0.2.0"]

[project.scripts]
ragbits = "ragbits.cli:main"
Expand Down
15 changes: 14 additions & 1 deletion packages/ragbits-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,23 @@

## Unreleased

## 0.1.0 (2024-10-08)
## 0.2.0 (2024-10-23)

### Added

- Project README.md (#103).
- Listing entries API for VectorStores (#138).
- Overrides for prompt discovery configurable in `pyproject.toml` file (#101).
- Default LLM factory configurable in `pyproject.toml` file (#101).

### Changed

- Fixed bug in chromadb while returning multiple records (#117).
- Fixed bug in prompt rendering for some pydantic models (#137).

## 0.1.0 (2024-10-08)

### Added

- Initial release of the package.
- Introduce core components: Prompts, LLMs, Embeddings and VectorStores.
Expand Down
2 changes: 1 addition & 1 deletion packages/ragbits-core/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ragbits-core"
version = "0.1.0"
version = "0.2.0"
description = "Building blocks for rapid development of GenAI applications"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
14 changes: 14 additions & 0 deletions packages/ragbits-document-search/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## Unreleased

## 0.2.0 (2024-10-23)

### Added

- Creation of DocumentSearch instances from config (#62).
- Automatic detection of document type (#99).
- LLM-based query rephrasing (#115).
- Batch ingestion from sources (#112).
- Add support to image formats (#121).
- Add HuggingFace sources (#106).

### Changed

- ragbits-core updated to version v0.2.0

## 0.1.0 (2024-10-08)

Expand Down
9 changes: 2 additions & 7 deletions packages/ragbits-document-search/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ragbits-document-search"
version = "0.1.0"
version = "0.2.0"
description = "Document Search module for Ragbits"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -30,12 +30,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"unstructured>=0.15.13",
"unstructured-client>=0.26.0",
"pdf2image>=1.17.0",
"ragbits-core==0.1.0"
]
dependencies = ["unstructured>=0.15.13", "unstructured-client>=0.26.0", "pdf2image>=1.17.0", "ragbits-core==0.2.0"]

[project.optional-dependencies]
gcs = [
Expand Down
13 changes: 13 additions & 0 deletions packages/ragbits-evaluate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# CHANGELOG

## Unreleased

## 0.2.0 (2024-10-23)

- Initial release of the package.
- Evaluation pipeline framework with capability to define evaluators & metrics.
- Evaluation pipeline for `ragbits-document-search`.

### Changed

- ragbits-core updated to version v0.2.0
7 changes: 2 additions & 5 deletions packages/ragbits-evaluate/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ragbits-evaluate"
version = "0.1.0"
version = "0.2.0"
description = "Evaluation module for Ragbits components"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -30,10 +30,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"hydra-core~=1.3.2",
"neptune~=1.12.0",
]
dependencies = ["hydra-core~=1.3.2", "neptune~=1.12.0", "ragbits-core==0.2.0"]

[project.optional-dependencies]
relari = [
Expand Down
28 changes: 28 additions & 0 deletions packages/ragbits/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

## Unreleased

## 0.2.0 (2024-10-23)

### Added

- ragbits-evaluate v0.2.0:
- Initial release of the package (#91).
- Evaluation pipeline framework with capability to define evaluators & metrics.
- Evaluation pipeline for `ragbits-document-search`.

### Changed

- ragbits-cli updated to version v0.2.0
- Improved performance by lazy-loading the modules (#111 #113 #120)
- ragbits-document-search updated to version v0.2.0
- Creation of DocumentSearch instances from config (#62).
- Automatic detection of document type (#99).
- LLM-based query rephrasing (#115).
- Batch ingestion from sources (#112).
- Support to image formats (#121).
- HuggingFace sources (#106).
- ragbits-core updated to version v0.2.0
- Project README.md (#103).
- Listing entries API for VectorStores (#138).
- Overrides for prompt discovery configurable in `pyproject.toml` file (#101).
- Default LLM factory configurable in `pyproject.toml` file (#101).
- Fixed bug in chromadb while returning multiple records (#117).
- Fixed bug in prompt rendering for some pydantic models (#137).

## 0.1.0 (2024-10-08)

### Added
Expand Down
9 changes: 5 additions & 4 deletions packages/ragbits/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ragbits"
version = "0.1.0"
version = "0.2.0"
description = "Building blocks for rapid development of GenAI applications"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -31,9 +31,10 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"ragbits-document-search==0.1.0",
"ragbits-cli==0.1.0",
"ragbits-core==0.1.0"
"ragbits-document-search==0.2.0",
"ragbits-cli==0.2.0",
"ragbits-evaluate==0.2.0",
"ragbits-core==0.2.0"
]

[build-system]
Expand Down

0 comments on commit 99d91f9

Please sign in to comment.