Skip to content

Commit

Permalink
release(ragbits-core): update to v0.3.0 (#176)
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 <mateusz.hordynski@deepsense.ai>
  • Loading branch information
3 people authored Nov 6, 2024
1 parent e674abc commit 51d4ac6
Show file tree
Hide file tree
Showing 14 changed files with 97 additions and 31 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,5 @@ dist/

# examples
chroma/

.aider*
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.3.0 (2024-11-06)

### Changed

- ragbits-core updated to version v0.3.0

## 0.2.0 (2024-10-23)

### 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.2.0"
version = "0.3.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.2.0"]
dependencies = ["typer>=0.12.5", "ragbits-core==0.3.0"]

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

## Unreleased

## 0.3.0 (2024-11-06)

### Added

- Observability toolset, with initial support to export traces to OpenTelemetry (#168)
- CLI commands to render / exec prompts (#146)
- Support of images in Prompt abstractions (#149)
- Support for different MetadataStores in VectorStore (#144)
- Now LLMs can be configured separately for vision, text and structured. (#153)

### Changed

- refactor: Add dynamic loading for modules that depend on optional dependencies (#148).
- refactor: Refactor vector store public API. (#151)

## 0.2.0 (2024-10-23)

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.2.0"
version = "0.3.0"
description = "Building blocks for rapid development of GenAI applications"
readme = "README.md"
requires-python = ">=3.10"
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,9 +2,20 @@

## Unreleased

## 0.3.0 (2024-11-06)

### Added

- Add location metadata to documents ingested into DocumentSearch (#122).
- Add LiteLLM Reranker (#109).


### Changed

- ragbits-core updated to version v0.3.0
- refactor: Add dynamic loading for modules that depend on optional dependencies (#148).
- refactor: change the type in from_source method to Source (#156).
- refactor: unified API for text representations of Element models (#171).

## 0.2.0 (2024-10-23)

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.2.0"
version = "0.3.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.2.0"]
dependencies = ["unstructured>=0.15.13", "unstructured-client>=0.26.0", "pdf2image>=1.17.0", "ragbits-core==0.3.0"]

[project.optional-dependencies]
gcs = [
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.3.0 (2024-11-06)

### Changed

- ragbits-core updated to version v0.3.0

## 0.2.0 (2024-10-23)

- Initial release of the package.
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.2.0"
version = "0.3.0"
description = "Evaluation 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 = ["hydra-core~=1.3.2", "neptune~=1.12.0", "ragbits-core==0.2.0"]
dependencies = ["hydra-core~=1.3.2", "neptune~=1.12.0", "ragbits-core==0.3.0"]

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

## Unreleased

## 0.3.0 (2024-11-06)

### Added

- Initial release of the package (#169).
- First guardrail with OpenAI Moderation.

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.2.0"
version = "0.3.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.2.0"]
dependencies = ["ragbits-core==0.3.0"]

[project.optional-dependencies]
openai = [
Expand Down
26 changes: 25 additions & 1 deletion packages/ragbits/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,33 @@

## Unreleased

## 0.3.0 (2024-11-06)

### Added

- ragbits-guardrails v0.3.0:
- Initial release of the package (#169).
- First guardrail with OpenAI Moderation.

### Changed

- Introduce ruff as linter and code formatter (#87).
- ragbits-cli updated to version v0.3.0
- ragbits-document-search updated to version v0.3.0
- Add location metadata to documents ingested into DocumentSearch (#122).
- Add LiteLLM Reranker (#109).
- ragbits-core updated to version v0.3.0
- refactor: Add dynamic loading for modules that depend on optional dependencies (#148).
- refactor: change the type in from_source method to Source (#156).
- refactor: unified API for text representations of Element models (#171).
- ragbits-evaluate updated to version v0.3.0
- ragbits-core updated to version v0.3.0
- Observability toolset, with initial support to export traces to OpenTelemetry (#168)
- CLI commands to render / exec prompts (#146)
- Support of images in Prompt abstractions (#149)
- Support for different MetadataStores in VectorStore (#144)
- Now LLMs can be configured separately for vision, text and structured. (#153)
- refactor: Add dynamic loading for modules that depend on optional dependencies (#148).
- refactor: Refactor vector store public API. (#151)

## 0.2.0 (2024-10-23)

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

[build-system]
Expand Down
26 changes: 10 additions & 16 deletions uv.lock

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

0 comments on commit 51d4ac6

Please sign in to comment.