Skip to content

Commit

Permalink
chore: update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
mhordynski committed Nov 6, 2024
1 parent 0f47ed2 commit 80cf5ec
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 2 deletions.
9 changes: 9 additions & 0 deletions packages/ragbits-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@

## 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
8 changes: 8 additions & 0 deletions packages/ragbits-document-search/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@

## 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
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.

20 changes: 19 additions & 1 deletion packages/ragbits/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,31 @@

## 0.3.0 (2024-11-06)

### Added

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

### Changed

- 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
- Introduce ruff as linter and code formatter (#87).
- 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
8 changes: 7 additions & 1 deletion packages/ragbits/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +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-core==0.3.0"]
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"
]

[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
Expand Down

0 comments on commit 80cf5ec

Please sign in to comment.