Skip to content

Commit 2d02bb8

Browse files
release(ragbits-core): update to v0.17.1 (#551)
Co-authored-by: ds-ragbits-robot <[email protected]> Co-authored-by: Mateusz Hordyński <[email protected]>
1 parent e8db995 commit 2d02bb8

File tree

24 files changed

+99
-57
lines changed

24 files changed

+99
-57
lines changed

packages/ragbits-chat/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 0.17.1 (2025-05-09)
6+
7+
### Changed
8+
9+
- ragbits-core updated to version v0.17.1
10+
511
## 0.17.0 (2025-05-06)
612

713
### Changed

packages/ragbits-chat/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-chat"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
description = "Building blocks for rapid development of GenAI applications"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3232
"Topic :: Software Development :: Libraries :: Python Modules",
3333
]
34-
dependencies = ["fastapi>=0.115.0,<1.0.0", "ragbits-core==0.17.0"]
34+
dependencies = ["fastapi>=0.115.0,<1.0.0", "ragbits-core==0.17.1"]
3535

3636
[project.urls]
3737
"Homepage" = "https://github.com/deepsense-ai/ragbits"
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
import{H as e}from"./index-D7cONMbc.js";const i=()=>e.jsxs("div",{children:[e.jsx("h1",{children:"Example Plugin"}),e.jsx("p",{children:"This is an example plugin."})]});export{i as default};
1+
import{H as e}from"./index-CCFIJlBU.js";const i=()=>e.jsxs("div",{children:[e.jsx("h1",{children:"Example Plugin"}),e.jsx("p",{children:"This is an example plugin."})]});export{i as default};

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/FeedbackFormPluginComponent-CGfFjqzm.js renamed to packages/ragbits-chat/src/ragbits/chat/ui-build/assets/FeedbackFormPluginComponent-Cp-_18Hh.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-D7cONMbc.js renamed to packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-CCFIJlBU.js

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-D2TAsYbm.js renamed to packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-CsywJL95.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-DxlHc-HZ.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-I07nxvaa.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/ragbits-chat/src/ragbits/chat/ui-build/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<link rel="icon" type="image/svg+xml" href="/assets/ragbits-9U4hpuUb.svg" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
88
<title>Ragbits</title>
9-
<script type="module" crossorigin src="/assets/index-D7cONMbc.js"></script>
10-
<link rel="stylesheet" crossorigin href="/assets/index-I07nxvaa.css">
9+
<script type="module" crossorigin src="/assets/index-CCFIJlBU.js"></script>
10+
<link rel="stylesheet" crossorigin href="/assets/index-DxlHc-HZ.css">
1111
</head>
1212

1313
<body class="h-full">
Binary file not shown.

packages/ragbits-chat/tests/unit/test_api.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ def mock_chat_interface() -> type[MockChatInterface]:
3535
@pytest.fixture
3636
def api(mock_chat_interface: type[MockChatInterface]) -> RagbitsAPI:
3737
"""Fixture providing a RagbitsAPI instance with the mock interface."""
38-
with patch("pathlib.Path.exists", return_value=True):
39-
api = RagbitsAPI(mock_chat_interface)
40-
return api
38+
api = RagbitsAPI(mock_chat_interface)
39+
return api
4140

4241

4342
@pytest.fixture

packages/ragbits-cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 0.17.1 (2025-05-09)
6+
7+
### Changed
8+
9+
- ragbits-core updated to version v0.17.1
10+
511
## 0.17.0 (2025-05-06)
612

713
### Changed

packages/ragbits-cli/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-cli"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
description = "A CLI application for ragbits - building blocks for rapid development of GenAI applications"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3232
"Topic :: Software Development :: Libraries :: Python Modules",
3333
]
34-
dependencies = ["typer>=0.12.5,<1.0.0", "ragbits-core==0.17.0"]
34+
dependencies = ["typer>=0.12.5,<1.0.0", "ragbits-core==0.17.1"]
3535

3636
[project.urls]
3737
"Homepage" = "https://github.com/deepsense-ai/ragbits"

packages/ragbits-core/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 0.17.1 (2025-05-09)
6+
57
- Fix: Qdrant vector store failing on gRCP connection errors (#548)
68

79
## 0.17.0 (2025-05-06)

packages/ragbits-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-core"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
description = "Building blocks for rapid development of GenAI applications"
55
readme = "README.md"
66
requires-python = ">=3.10"

packages/ragbits-document-search/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 0.17.1 (2025-05-09)
6+
7+
### Changed
8+
9+
- ragbits-core updated to version v0.17.1
10+
511
## 0.17.0 (2025-05-06)
612

713
### Changed

packages/ragbits-document-search/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-document-search"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
description = "Document Search module for Ragbits"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3232
"Topic :: Software Development :: Libraries :: Python Modules",
3333
]
34-
dependencies = ["unstructured>=0.16.9", "unstructured-client>=0.26.0", "rerankers>=0.6.1", "ragbits-core==0.17.0"]
34+
dependencies = ["unstructured>=0.16.9", "unstructured-client>=0.26.0", "rerankers>=0.6.1", "ragbits-core==0.17.1"]
3535

3636
[project.urls]
3737
"Homepage" = "https://github.com/deepsense-ai/ragbits"

packages/ragbits-evaluate/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 0.17.1 (2025-05-09)
6+
7+
### Changed
8+
9+
- ragbits-core updated to version v0.17.1
10+
511
## 0.17.0 (2025-05-06)
612

713
### Changed

packages/ragbits-evaluate/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-evaluate"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
description = "Evaluation module for Ragbits components"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -32,7 +32,7 @@ classifiers = [
3232
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3333
"Topic :: Software Development :: Libraries :: Python Modules",
3434
]
35-
dependencies = ["hydra-core>=1.3.2,<2.0.0", "neptune[optuna]>=1.12.0,<2.0.0", "optuna>=4.0.0,<5.0.0", "distilabel>=1.4.1,<2.0.0", "datasets>=3.0.1,<4.0.0", "ragbits-core==0.17.0"]
35+
dependencies = ["hydra-core>=1.3.2,<2.0.0", "neptune[optuna]>=1.12.0,<2.0.0", "optuna>=4.0.0,<5.0.0", "distilabel>=1.4.1,<2.0.0", "datasets>=3.0.1,<4.0.0", "ragbits-core==0.17.1"]
3636

3737
[project.urls]
3838
"Homepage" = "https://github.com/deepsense-ai/ragbits"

packages/ragbits-guardrails/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 0.17.1 (2025-05-09)
6+
7+
### Changed
8+
9+
- ragbits-core updated to version v0.17.1
10+
511
## 0.17.0 (2025-05-06)
612

713
### Changed

packages/ragbits-guardrails/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits-guardrails"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
description = "Guardrails module for Ragbits components"
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3232
"Topic :: Software Development :: Libraries :: Python Modules",
3333
]
34-
dependencies = ["ragbits-core==0.17.0"]
34+
dependencies = ["ragbits-core==0.17.1"]
3535

3636
[project.urls]
3737
"Homepage" = "https://github.com/deepsense-ai/ragbits"

packages/ragbits/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## Unreleased
44

5+
## 0.17.1 (2025-05-09)
6+
7+
### Changed
8+
9+
- ragbits-chat updated to version v0.17.1
10+
- ragbits-cli updated to version v0.17.1
11+
- ragbits-document-search updated to version v0.17.1
12+
- ragbits-evaluate updated to version v0.17.1
13+
- ragbits-guardrails updated to version v0.17.1
14+
- ragbits-core updated to version v0.17.1
15+
516
## 0.17.0 (2025-05-06)
617

718
### Changed

packages/ragbits/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ragbits"
3-
version = "0.17.0"
3+
version = "0.17.1"
44
description = "Building blocks for rapid development of GenAI applications"
55
dynamic = ["readme"]
66
requires-python = ">=3.10"
@@ -31,7 +31,7 @@ classifiers = [
3131
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3232
"Topic :: Software Development :: Libraries :: Python Modules",
3333
]
34-
dependencies = ["ragbits-document-search==0.17.0", "ragbits-cli==0.17.0", "ragbits-evaluate==0.17.0", "ragbits-guardrails==0.17.0", "ragbits-chat==0.17.0", "ragbits-core==0.17.0"]
34+
dependencies = ["ragbits-document-search==0.17.1", "ragbits-cli==0.17.1", "ragbits-evaluate==0.17.1", "ragbits-guardrails==0.17.1", "ragbits-chat==0.17.1", "ragbits-core==0.17.1"]
3535

3636
[project.urls]
3737
"Homepage" = "https://github.com/deepsense-ai/ragbits"

uv.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)