ragbits-cli 1.2.1__tar.gz → 1.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/.gitignore +4 -0
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/CHANGELOG.md +14 -0
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/PKG-INFO +2 -2
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/pyproject.toml +2 -2
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/src/ragbits/cli/__init__.py +2 -0
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/README.md +0 -0
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/src/ragbits/cli/_utils.py +0 -0
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/src/ragbits/cli/py.typed +0 -0
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/src/ragbits/cli/state.py +0 -0
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/tests/unit/test_state.py +0 -0
- {ragbits_cli-1.2.1 → ragbits_cli-1.3.0}/tests/unit/test_utils.py +0 -0
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 1.3.0 (2025-09-11)
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- ragbits-core updated to version v1.3.0
|
|
10
|
+
|
|
11
|
+
- feat: add current working directory to Python path for better CLI module discovery
|
|
12
|
+
|
|
13
|
+
## 1.2.2 (2025-08-08)
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- ragbits-core updated to version v1.2.2
|
|
18
|
+
|
|
5
19
|
## 1.2.1 (2025-08-04)
|
|
6
20
|
|
|
7
21
|
### Changed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragbits-cli
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: A CLI application for ragbits - building blocks for rapid development of GenAI applications
|
|
5
5
|
Project-URL: Homepage, https://github.com/deepsense-ai/ragbits
|
|
6
6
|
Project-URL: Bug Reports, https://github.com/deepsense-ai/ragbits/issues
|
|
@@ -22,7 +22,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
22
22
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
23
23
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
24
|
Requires-Python: >=3.10
|
|
25
|
-
Requires-Dist: ragbits-core==1.
|
|
25
|
+
Requires-Dist: ragbits-core==1.3.0
|
|
26
26
|
Requires-Dist: typer<1.0.0,>=0.12.5
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
28
28
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "ragbits-cli"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.3.0"
|
|
4
4
|
description = "A CLI application for ragbits - building blocks for rapid development of GenAI applications"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -31,7 +31,7 @@ classifiers = [
|
|
|
31
31
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
32
32
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
33
33
|
]
|
|
34
|
-
dependencies = ["typer>=0.12.5,<1.0.0", "ragbits-core==1.
|
|
34
|
+
dependencies = ["typer>=0.12.5,<1.0.0", "ragbits-core==1.3.0"]
|
|
35
35
|
|
|
36
36
|
[project.urls]
|
|
37
37
|
"Homepage" = "https://github.com/deepsense-ai/ragbits"
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import importlib.util
|
|
2
2
|
import os
|
|
3
3
|
import pkgutil
|
|
4
|
+
import sys
|
|
4
5
|
from pathlib import Path
|
|
5
6
|
from typing import Annotated
|
|
6
7
|
|
|
@@ -60,6 +61,7 @@ def autoregister() -> None:
|
|
|
60
61
|
for module in pkgutil.iter_modules(ragbits.__path__)
|
|
61
62
|
if module.ispkg and module.name != "cli" and (Path(module.module_finder.path) / module.name / "cli.py").exists() # type: ignore
|
|
62
63
|
]
|
|
64
|
+
sys.path.append(os.getcwd())
|
|
63
65
|
|
|
64
66
|
for module in cli_enabled_modules:
|
|
65
67
|
register_func = importlib.import_module(f"ragbits.{module.name}.cli").register
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|