ragit 0.11.0__tar.gz → 0.11.1__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.
- {ragit-0.11.0/ragit.egg-info → ragit-0.11.1}/PKG-INFO +2 -2
- {ragit-0.11.0 → ragit-0.11.1}/pyproject.toml +2 -2
- {ragit-0.11.0 → ragit-0.11.1}/ragit/version.py +1 -1
- {ragit-0.11.0 → ragit-0.11.1/ragit.egg-info}/PKG-INFO +2 -2
- {ragit-0.11.0 → ragit-0.11.1}/ragit.egg-info/requires.txt +1 -1
- {ragit-0.11.0 → ragit-0.11.1}/LICENSE +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/README.md +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/__init__.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/assistant.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/config.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/core/__init__.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/core/experiment/__init__.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/core/experiment/experiment.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/core/experiment/results.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/exceptions.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/loaders.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/logging.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/monitor.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/providers/__init__.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/providers/base.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/providers/function_adapter.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/providers/ollama.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit/utils/__init__.py +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit.egg-info/SOURCES.txt +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit.egg-info/dependency_links.txt +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/ragit.egg-info/top_level.txt +0 -0
- {ragit-0.11.0 → ragit-0.11.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragit
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.1
|
|
4
4
|
Summary: Automatic RAG Pattern Optimization Engine
|
|
5
5
|
Author: RODMENA LIMITED
|
|
6
6
|
Maintainer-email: RODMENA LIMITED <info@rodmena.co.uk>
|
|
@@ -20,7 +20,7 @@ Requires-Python: >=3.12
|
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: requests>=2.31.0
|
|
23
|
-
Requires-Dist: numpy
|
|
23
|
+
Requires-Dist: numpy==2.4.1
|
|
24
24
|
Requires-Dist: pydantic>=2.0.0
|
|
25
25
|
Requires-Dist: python-dotenv>=1.0.0
|
|
26
26
|
Requires-Dist: tqdm>=4.66.0
|
|
@@ -32,7 +32,7 @@ license = "Apache-2.0"
|
|
|
32
32
|
dynamic = ["version"]
|
|
33
33
|
dependencies = [
|
|
34
34
|
"requests>=2.31.0",
|
|
35
|
-
"numpy
|
|
35
|
+
"numpy==2.4.1",
|
|
36
36
|
"pydantic>=2.0.0",
|
|
37
37
|
"python-dotenv>=1.0.0",
|
|
38
38
|
"tqdm>=4.66.0",
|
|
@@ -77,7 +77,7 @@ python_classes = ["Test*"]
|
|
|
77
77
|
python_functions = ["test_*"]
|
|
78
78
|
log_cli = false
|
|
79
79
|
log_level = "INFO"
|
|
80
|
-
addopts = "-v --tb=short
|
|
80
|
+
addopts = "-v --tb=short"
|
|
81
81
|
markers = [
|
|
82
82
|
"integration: marks tests as integration tests (may require external services)",
|
|
83
83
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragit
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.1
|
|
4
4
|
Summary: Automatic RAG Pattern Optimization Engine
|
|
5
5
|
Author: RODMENA LIMITED
|
|
6
6
|
Maintainer-email: RODMENA LIMITED <info@rodmena.co.uk>
|
|
@@ -20,7 +20,7 @@ Requires-Python: >=3.12
|
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: requests>=2.31.0
|
|
23
|
-
Requires-Dist: numpy
|
|
23
|
+
Requires-Dist: numpy==2.4.1
|
|
24
24
|
Requires-Dist: pydantic>=2.0.0
|
|
25
25
|
Requires-Dist: python-dotenv>=1.0.0
|
|
26
26
|
Requires-Dist: tqdm>=4.66.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|