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.
@@ -105,3 +105,7 @@ qdrant/
105
105
 
106
106
  .DS_Store
107
107
  node_modules/
108
+
109
+ lazygit
110
+
111
+ lazygit.tar.gz
@@ -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.2.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.2.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.2.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.2.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