Skip to content

Commit

Permalink
release(ragbits-core): update to v0.4.0 (#208)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Mateusz Hordyński <[email protected]>
  • Loading branch information
3 people authored Nov 27, 2024
1 parent f310586 commit f924acb
Show file tree
Hide file tree
Showing 13 changed files with 115 additions and 25 deletions.
6 changes: 6 additions & 0 deletions packages/ragbits-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 0.4.0 (2024-11-27)

### Changed

- ragbits-core updated to version v0.4.0

## 0.3.0 (2024-11-06)

### Changed
Expand Down
10 changes: 8 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.3.0"
version = "0.4.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,13 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["typer>=0.12.5", "ragbits-core==0.3.0"]
dependencies = ["typer>=0.12.5", "ragbits-core==0.4.0"]

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
"Bug Reports" = "https://github.com/deepsense-ai/ragbits/issues"
"Documentation" = "https://ragbits.deepsense.ai/"
"Source" = "https://github.com/deepsense-ai/ragbits"

[project.scripts]
ragbits = "ragbits.cli:main"
Expand Down
10 changes: 10 additions & 0 deletions packages/ragbits-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## Unreleased

## 0.4.0 (2024-11-27)


### Added

- Add support for Qdrant VectorStore (#163).
- Add streaming interface to LLMs (#188).
- Better images support in Prompt abstractions (#201).


## 0.3.0 (2024-11-06)

### Added
Expand Down
8 changes: 7 additions & 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.3.0"
version = "0.4.0"
description = "Building blocks for rapid development of GenAI applications"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -38,6 +38,12 @@ dependencies = [
"tomli~=2.0.2",
]

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
"Bug Reports" = "https://github.com/deepsense-ai/ragbits/issues"
"Documentation" = "https://ragbits.deepsense.ai/"
"Source" = "https://github.com/deepsense-ai/ragbits"

[project.optional-dependencies]
chroma = [
"chromadb~=0.4.24",
Expand Down
11 changes: 11 additions & 0 deletions packages/ragbits-document-search/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## Unreleased

## 0.4.0 (2024-11-27)

### Added

- Add support for batch ingestion (#185).
- Ingesting images is now supported (#172).

### Changed

- ragbits-core updated to version v0.4.0

## 0.3.0 (2024-11-06)

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

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
"Bug Reports" = "https://github.com/deepsense-ai/ragbits/issues"
"Documentation" = "https://ragbits.deepsense.ai/"
"Source" = "https://github.com/deepsense-ai/ragbits"

[project.optional-dependencies]
gcs = [
Expand Down
11 changes: 10 additions & 1 deletion packages/ragbits-evaluate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@

## Unreleased

- Generic autoconfiguration pipeline framework
## 0.4.0 (2024-11-27)

### Added

- Introduced optimization with optuna (#177).
- Add synthetic data generation pipeline (#165).

### Changed

- ragbits-core updated to version v0.4.0

## 0.3.0 (2024-11-06)

Expand Down
11 changes: 9 additions & 2 deletions packages/ragbits-evaluate/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[project]
name = "ragbits-evaluate"
version = "0.3.0"
version = "0.4.0"
description = "Evaluation module for Ragbits components"
readme = "README.md"
requires-python = ">=3.10"

license = "MIT"
authors = [
{ name = "deepsense.ai", email = "[email protected]"}
Expand Down Expand Up @@ -31,7 +32,13 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["hydra-core~=1.3.2", "neptune~=1.12.0", "ragbits-core==0.3.0", "optuna==4.0.0", "distilabel==1.4.1"]
dependencies = ["hydra-core~=1.3.2", "neptune~=1.12.0", "optuna==4.0.0", "distilabel==1.4.1", "ragbits-core==0.4.0"]

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
"Bug Reports" = "https://github.com/deepsense-ai/ragbits/issues"
"Documentation" = "https://ragbits.deepsense.ai/"
"Source" = "https://github.com/deepsense-ai/ragbits"

[project.optional-dependencies]
relari = [
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.4.0 (2024-11-27)

### Changed

- ragbits-core updated to version v0.4.0

## 0.3.0 (2024-11-06)

### Added
Expand Down
10 changes: 8 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.3.0"
version = "0.4.0"
description = "Guardrails module for Ragbits components"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -31,7 +31,13 @@ classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["ragbits-core==0.3.0"]
dependencies = ["ragbits-core==0.4.0"]

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
"Bug Reports" = "https://github.com/deepsense-ai/ragbits/issues"
"Documentation" = "https://ragbits.deepsense.ai/"
"Source" = "https://github.com/deepsense-ai/ragbits"

[project.optional-dependencies]
openai = [
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.4.0 (2024-11-27)

### Changed

- ragbits-cli updated to version v0.4.0
- ragbits-document-search updated to version v0.4.0
- Add support for batch ingestion (#185).
- Ingesting images is now supported (#172).
- ragbits-evaluate updated to version v0.4.0
- Introduced optimization with optuna (#177).
- Add synthetic data generation pipeline (#165).
- ragbits-guardrails updated to version v0.4.0
- ragbits-core updated to version v0.4.0
- Add support for Qdrant VectorStore (#163).
- Add streaming interface to LLMs (#188).
- Better images support in Prompt abstractions (#201).

## 0.3.0 (2024-11-06)

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

[project.urls]
"Homepage" = "https://github.com/deepsense-ai/ragbits"
"Bug Reports" = "https://github.com/deepsense-ai/ragbits/issues"
"Documentation" = "https://ragbits.deepsense.ai/"
"Source" = "https://github.com/deepsense-ai/ragbits"

[project.optional-dependencies]
chroma = [
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 f924acb

Please sign in to comment.