ragmint 0.2.0__tar.gz → 0.2.3__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.
- ragmint-0.2.3/MANIFEST.in +3 -0
- {ragmint-0.2.0/src/ragmint.egg-info → ragmint-0.2.3}/PKG-INFO +1 -1
- {ragmint-0.2.0 → ragmint-0.2.3}/README.md +1 -1
- {ragmint-0.2.0 → ragmint-0.2.3}/pyproject.toml +9 -1
- ragmint-0.2.3/src/ragmint/experiments/validation_qa.json +14 -0
- {ragmint-0.2.0 → ragmint-0.2.3/src/ragmint.egg-info}/PKG-INFO +1 -1
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint.egg-info/SOURCES.txt +2 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/LICENSE +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/setup.cfg +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/__init__.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/__main__.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/autotuner.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/__init__.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/chunking.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/embeddings.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/evaluation.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/pipeline.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/reranker.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/retriever.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/experiments/__init__.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/explainer.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/leaderboard.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/optimization/__init__.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/optimization/search.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/__init__.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/conftest.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_autotuner.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_explainer.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_explainer_integration.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_integration_autotuner_ragmint.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_leaderboard.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_pipeline.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_retriever.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_search.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_tuner.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tuner.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/utils/__init__.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/utils/caching.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/utils/data_loader.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/utils/logger.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/utils/metrics.py +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint.egg-info/dependency_links.txt +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint.egg-info/requires.txt +0 -0
- {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint.egg-info/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ragmint"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.3"
|
|
8
8
|
description = "A modular framework for evaluating and optimizing RAG pipelines."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { text = "Apache License 2.0" }
|
|
@@ -36,10 +36,18 @@ Issues = "https://github.com/andyolivers/ragmint/issues"
|
|
|
36
36
|
|
|
37
37
|
[tool.setuptools]
|
|
38
38
|
include-package-data = true
|
|
39
|
+
package-dir = {"" = "src"}
|
|
39
40
|
|
|
40
41
|
[tool.setuptools.packages.find]
|
|
41
42
|
where = ["src"]
|
|
42
43
|
|
|
44
|
+
[tool.setuptools.package-data]
|
|
45
|
+
ragmint = ["experiments/*.json"]
|
|
46
|
+
|
|
47
|
+
[tool.setuptools.data-files]
|
|
48
|
+
"." = ["README.md", "LICENSE"]
|
|
49
|
+
|
|
43
50
|
[tool.pytest.ini_options]
|
|
44
51
|
testpaths = ["tests"]
|
|
45
52
|
addopts = "-v"
|
|
53
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"query": "What is Retrieval-Augmented Generation?",
|
|
4
|
+
"expected_answer": "A technique that combines information retrieval with language generation to improve factual accuracy."
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
"query": "What is the role of embeddings in a RAG system?",
|
|
8
|
+
"expected_answer": "They represent text as numerical vectors for similarity-based retrieval."
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"query": "What is Maximal Marginal Relevance used for?",
|
|
12
|
+
"expected_answer": "To select diverse and relevant documents during reranking."
|
|
13
|
+
}
|
|
14
|
+
]
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
LICENSE
|
|
2
|
+
MANIFEST.in
|
|
2
3
|
README.md
|
|
3
4
|
pyproject.toml
|
|
4
5
|
src/ragmint/__init__.py
|
|
@@ -20,6 +21,7 @@ src/ragmint/core/pipeline.py
|
|
|
20
21
|
src/ragmint/core/reranker.py
|
|
21
22
|
src/ragmint/core/retriever.py
|
|
22
23
|
src/ragmint/experiments/__init__.py
|
|
24
|
+
src/ragmint/experiments/validation_qa.json
|
|
23
25
|
src/ragmint/optimization/__init__.py
|
|
24
26
|
src/ragmint/optimization/search.py
|
|
25
27
|
src/ragmint/tests/__init__.py
|
|
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
|
|
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
|