ragbits-cli 0.2.0__tar.gz → 0.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.
@@ -87,11 +87,13 @@ cmake-build-*/
87
87
  **/.terraform.lock.hcl
88
88
  **/.terraform
89
89
 
90
- # benchmarks
91
- benchmarks/sql/data/
92
-
93
90
  # mkdocs generated files
94
91
  site/
95
92
 
96
93
  # build artifacts
97
94
  dist/
95
+
96
+ # examples
97
+ chroma/
98
+
99
+ .aider*
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.3.0 (2024-11-06)
6
+
7
+ ### Changed
8
+
9
+ - ragbits-core updated to version v0.3.0
10
+
5
11
  ## 0.2.0 (2024-10-23)
6
12
 
7
13
  ### Changed
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ragbits-cli
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: A CLI application for ragbits - building blocks for rapid development of GenAI applications
5
5
  Author-email: "deepsense.ai" <ragbits@deepsense.ai>
6
6
  License-Expression: MIT
@@ -14,10 +14,11 @@ Classifier: Operating System :: OS Independent
14
14
  Classifier: Programming Language :: Python :: 3.10
15
15
  Classifier: Programming Language :: Python :: 3.11
16
16
  Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
17
18
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
18
19
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
19
20
  Requires-Python: >=3.10
20
- Requires-Dist: ragbits-core==0.2.0
21
+ Requires-Dist: ragbits-core==0.3.0
21
22
  Requires-Dist: typer>=0.12.5
22
23
  Description-Content-Type: text/markdown
23
24
 
File without changes
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ragbits-cli"
3
- version = "0.2.0"
3
+ version = "0.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"
@@ -27,10 +27,11 @@ classifiers = [
27
27
  "Programming Language :: Python :: 3.10",
28
28
  "Programming Language :: Python :: 3.11",
29
29
  "Programming Language :: Python :: 3.12",
30
+ "Programming Language :: Python :: 3.13",
30
31
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
31
32
  "Topic :: Software Development :: Libraries :: Python Modules",
32
33
  ]
33
- dependencies = ["typer>=0.12.5", "ragbits-core==0.2.0"]
34
+ dependencies = ["typer>=0.12.5", "ragbits-core==0.3.0"]
34
35
 
35
36
  [project.scripts]
36
37
  ragbits = "ragbits.cli:main"
@@ -19,13 +19,10 @@ def main() -> None:
19
19
  - if found it imports the `register` function from the `cli` module and calls it with the `app` object
20
20
  - register function should add the CLI commands to the `app` object
21
21
  """
22
-
23
22
  cli_enabled_modules = [
24
23
  module
25
24
  for module in pkgutil.iter_modules(ragbits.__path__)
26
- if module.ispkg
27
- and module.name != "cli"
28
- and (Path(module.module_finder.path) / module.name / "cli.py").exists() # type: ignore
25
+ if module.ispkg and module.name != "cli" and (Path(module.module_finder.path) / module.name / "cli.py").exists() # type: ignore
29
26
  ]
30
27
 
31
28
  for module in cli_enabled_modules:
File without changes