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.
Files changed (44) hide show
  1. ragmint-0.2.3/MANIFEST.in +3 -0
  2. {ragmint-0.2.0/src/ragmint.egg-info → ragmint-0.2.3}/PKG-INFO +1 -1
  3. {ragmint-0.2.0 → ragmint-0.2.3}/README.md +1 -1
  4. {ragmint-0.2.0 → ragmint-0.2.3}/pyproject.toml +9 -1
  5. ragmint-0.2.3/src/ragmint/experiments/validation_qa.json +14 -0
  6. {ragmint-0.2.0 → ragmint-0.2.3/src/ragmint.egg-info}/PKG-INFO +1 -1
  7. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint.egg-info/SOURCES.txt +2 -0
  8. {ragmint-0.2.0 → ragmint-0.2.3}/LICENSE +0 -0
  9. {ragmint-0.2.0 → ragmint-0.2.3}/setup.cfg +0 -0
  10. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/__init__.py +0 -0
  11. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/__main__.py +0 -0
  12. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/autotuner.py +0 -0
  13. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/__init__.py +0 -0
  14. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/chunking.py +0 -0
  15. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/embeddings.py +0 -0
  16. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/evaluation.py +0 -0
  17. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/pipeline.py +0 -0
  18. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/reranker.py +0 -0
  19. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/core/retriever.py +0 -0
  20. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/experiments/__init__.py +0 -0
  21. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/explainer.py +0 -0
  22. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/leaderboard.py +0 -0
  23. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/optimization/__init__.py +0 -0
  24. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/optimization/search.py +0 -0
  25. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/__init__.py +0 -0
  26. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/conftest.py +0 -0
  27. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_autotuner.py +0 -0
  28. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_explainer.py +0 -0
  29. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_explainer_integration.py +0 -0
  30. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_integration_autotuner_ragmint.py +0 -0
  31. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_leaderboard.py +0 -0
  32. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_pipeline.py +0 -0
  33. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_retriever.py +0 -0
  34. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_search.py +0 -0
  35. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tests/test_tuner.py +0 -0
  36. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/tuner.py +0 -0
  37. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/utils/__init__.py +0 -0
  38. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/utils/caching.py +0 -0
  39. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/utils/data_loader.py +0 -0
  40. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/utils/logger.py +0 -0
  41. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint/utils/metrics.py +0 -0
  42. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint.egg-info/dependency_links.txt +0 -0
  43. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint.egg-info/requires.txt +0 -0
  44. {ragmint-0.2.0 → ragmint-0.2.3}/src/ragmint.egg-info/top_level.txt +0 -0
@@ -0,0 +1,3 @@
1
+ include README.md
2
+ include LICENSE
3
+ recursive-include src/ragmint/experiments *.json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ragmint
3
- Version: 0.2.0
3
+ Version: 0.2.3
4
4
  Summary: A modular framework for evaluating and optimizing RAG pipelines.
5
5
  Author-email: Andre Oliveira <oandreoliveira@outlook.com>
6
6
  License: Apache License 2.0
@@ -281,4 +281,4 @@ Licensed under the **Apache License 2.0** — free for personal, research, and c
281
281
 
282
282
  **André Oliveira**
283
283
  [andyolivers.com](https://andyolivers.com)
284
- Data Scientist | AI Engineer
284
+ Data Scientist | AI Engineer
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ragmint"
7
- version = "0.2.0"
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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ragmint
3
- Version: 0.2.0
3
+ Version: 0.2.3
4
4
  Summary: A modular framework for evaluating and optimizing RAG pipelines.
5
5
  Author-email: Andre Oliveira <oandreoliveira@outlook.com>
6
6
  License: Apache License 2.0
@@ -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