ragbits-cli 0.3.0__tar.gz → 0.4.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-0.3.0 → ragbits_cli-0.4.0}/.gitignore +1 -0
- {ragbits_cli-0.3.0 → ragbits_cli-0.4.0}/CHANGELOG.md +6 -0
- {ragbits_cli-0.3.0 → ragbits_cli-0.4.0}/PKG-INFO +7 -3
- {ragbits_cli-0.3.0 → ragbits_cli-0.4.0}/pyproject.toml +8 -2
- {ragbits_cli-0.3.0 → ragbits_cli-0.4.0}/README.md +0 -0
- {ragbits_cli-0.3.0 → ragbits_cli-0.4.0}/py.typed +0 -0
- {ragbits_cli-0.3.0 → ragbits_cli-0.4.0}/src/ragbits/cli/__init__.py +0 -0
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ragbits-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: A CLI application for ragbits - building blocks for rapid development of GenAI applications
|
|
5
|
+
Project-URL: Homepage, https://github.com/deepsense-ai/ragbits
|
|
6
|
+
Project-URL: Bug Reports, https://github.com/deepsense-ai/ragbits/issues
|
|
7
|
+
Project-URL: Documentation, https://ragbits.deepsense.ai/
|
|
8
|
+
Project-URL: Source, https://github.com/deepsense-ai/ragbits
|
|
5
9
|
Author-email: "deepsense.ai" <ragbits@deepsense.ai>
|
|
6
|
-
License
|
|
10
|
+
License: MIT
|
|
7
11
|
Keywords: GenAI,Generative AI,LLMs,Large Language Models,Prompt Management,RAG,Retrieval Augmented Generation
|
|
8
12
|
Classifier: Development Status :: 4 - Beta
|
|
9
13
|
Classifier: Environment :: Console
|
|
@@ -18,7 +22,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
18
22
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
19
23
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
24
|
Requires-Python: >=3.10
|
|
21
|
-
Requires-Dist: ragbits-core==0.
|
|
25
|
+
Requires-Dist: ragbits-core==0.4.0
|
|
22
26
|
Requires-Dist: typer>=0.12.5
|
|
23
27
|
Description-Content-Type: text/markdown
|
|
24
28
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "ragbits-cli"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.4.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,13 @@ classifiers = [
|
|
|
31
31
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
32
32
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
33
33
|
]
|
|
34
|
-
dependencies = ["typer>=0.12.5", "ragbits-core==0.
|
|
34
|
+
dependencies = ["typer>=0.12.5", "ragbits-core==0.4.0"]
|
|
35
|
+
|
|
36
|
+
[project.urls]
|
|
37
|
+
"Homepage" = "https://github.com/deepsense-ai/ragbits"
|
|
38
|
+
"Bug Reports" = "https://github.com/deepsense-ai/ragbits/issues"
|
|
39
|
+
"Documentation" = "https://ragbits.deepsense.ai/"
|
|
40
|
+
"Source" = "https://github.com/deepsense-ai/ragbits"
|
|
35
41
|
|
|
36
42
|
[project.scripts]
|
|
37
43
|
ragbits = "ragbits.cli:main"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|