Skip to content

Commit

Permalink
release(ragbits-core): update to v0.5.0 (#239)
Browse files Browse the repository at this point in the history
Co-authored-by: ds-ragbits-robot <[email protected]>
Co-authored-by: Mateusz Hordyński <[email protected]>
  • Loading branch information
3 people authored Dec 5, 2024
1 parent 926e4b6 commit ba4a59d
Show file tree
Hide file tree
Showing 14 changed files with 82 additions and 20 deletions.
10 changes: 10 additions & 0 deletions packages/ragbits-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## Unreleased

## 0.5.0 (2024-12-05)

### Added

- Add global flag to specify output type: text or json (#232).

### Changed

- ragbits-core updated to version v0.5.0

## 0.4.0 (2024-11-27)

### Changed
Expand Down
4 changes: 2 additions & 2 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.4.0"
version = "0.5.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 @@ -31,7 +31,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["typer>=0.12.5", "ragbits-core==0.4.0"]
dependencies = ["typer>=0.12.5", "ragbits-core==0.5.0"]

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
Expand Down
9 changes: 8 additions & 1 deletion packages/ragbits-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@

## Unreleased

## 0.4.0 (2024-11-27)
## 0.5.0 (2024-12-05)

### Added

- Default LLM factory when configuration is not provided (#209).
- Add remove operation to VectorStore (#210).
- Install litellm package by default (#236).

## 0.4.0 (2024-11-27)

### Added

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.4.0"
version = "0.5.0"
description = "Building blocks for rapid development of GenAI applications"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
from ragbits.core.utils.config_handling import get_cls_from_config

from .base import Embeddings, EmbeddingType
from .litellm import LiteLLMEmbeddings
from .noop import NoopEmbeddings

__all__ = ["EmbeddingType", "Embeddings", "NoopEmbeddings"]
__all__ = ["EmbeddingType", "Embeddings", "LiteLLMEmbeddings", "NoopEmbeddings"]

module = sys.modules[__name__]

Expand Down
12 changes: 12 additions & 0 deletions packages/ragbits-document-search/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

## Unreleased

## 0.5.0 (2024-12-05)

### Added

- Distributed ingestion with usage of https://www.ray.io/ (#207)
- Documents can be now replaced in existing VectorStore (#210)

### Changed

- ragbits-core updated to version v0.5.0
- Providers are now loaded dynamically (#219)

## 0.4.0 (2024-11-27)

### Added
Expand Down
4 changes: 2 additions & 2 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.4.0"
version = "0.5.0"
description = "Document Search module for Ragbits"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -31,7 +31,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.4.0"]
dependencies = ["unstructured>=0.15.13", "unstructured-client>=0.26.0", "pdf2image>=1.17.0", "ragbits-core==0.5.0"]

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
Expand Down
6 changes: 6 additions & 0 deletions packages/ragbits-evaluate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 0.5.0 (2024-12-05)

### Changed

- ragbits-core updated to version v0.5.0

## 0.4.0 (2024-11-27)

### Added
Expand Down
4 changes: 2 additions & 2 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.4.0"
version = "0.5.0"
description = "Evaluation module for Ragbits components"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -32,7 +32,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["hydra-core~=1.3.2", "neptune~=1.12.0", "optuna==4.0.0", "distilabel==1.4.1", "ragbits-core==0.4.0"]
dependencies = ["hydra-core~=1.3.2", "neptune~=1.12.0", "optuna==4.0.0", "distilabel==1.4.1", "ragbits-core==0.5.0"]

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
Expand Down
6 changes: 6 additions & 0 deletions packages/ragbits-guardrails/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 0.5.0 (2024-12-05)

### Changed

- ragbits-core updated to version v0.5.0

## 0.4.0 (2024-11-27)

### Changed
Expand Down
4 changes: 2 additions & 2 deletions packages/ragbits-guardrails/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ragbits-guardrails"
version = "0.4.0"
version = "0.5.0"
description = "Guardrails module for Ragbits components"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -31,7 +31,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["ragbits-core==0.4.0"]
dependencies = ["ragbits-core==0.5.0"]

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
Expand Down
17 changes: 17 additions & 0 deletions packages/ragbits/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

## Unreleased

## 0.5.0 (2024-12-05)

### Changed

- ragbits-cli updated to version v0.5.0
- Add global flag to specify output type: text or json (#232).
- ragbits-document-search updated to version v0.5.0
- Distributed ingestion with usage of https://www.ray.io/ (#207)
- Documents can be now replaced in existing VectorStore (#210)
- Providers are now loaded dynamically (#219)
- ragbits-evaluate updated to version v0.5.0
- ragbits-guardrails updated to version v0.5.0
- ragbits-core updated to version v0.5.0
- Default LLM factory when configuration is not provided (#209).
- Add remove operation to VectorStore (#210).
- Install litellm package by default (#236).

## 0.4.0 (2024-11-27)

### Changed
Expand Down
7 changes: 5 additions & 2 deletions packages/ragbits/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ragbits"
version = "0.4.0"
version = "0.5.0"
description = "Building blocks for rapid development of GenAI applications"
dynamic = ["readme"]
requires-python = ">=3.10"
Expand Down Expand Up @@ -31,7 +31,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["ragbits-document-search==0.4.0", "ragbits-cli==0.4.0", "ragbits-evaluate==0.4.0", "ragbits-guardrails==0.4.0", "ragbits-core==0.4.0"]
dependencies = ["ragbits-document-search==0.5.0", "ragbits-cli==0.5.0", "ragbits-evaluate==0.5.0", "ragbits-guardrails==0.5.0", "ragbits-core==0.5.0"]

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
Expand Down Expand Up @@ -72,6 +72,9 @@ qdrant = [
relari = [
"continuous-eval~=0.3.12",
]
distributed = [
"ray>=2.39.0",
]

[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
Expand Down
14 changes: 7 additions & 7 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ba4a59d

Please sign in to comment.