ragfallback 2.0.1__tar.gz → 2.0.2__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.
- {ragfallback-2.0.1/ragfallback.egg-info → ragfallback-2.0.2}/PKG-INFO +2 -2
- {ragfallback-2.0.1 → ragfallback-2.0.2}/pyproject.toml +2 -2
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/__init__.py +1 -1
- {ragfallback-2.0.1 → ragfallback-2.0.2/ragfallback.egg-info}/PKG-INFO +2 -2
- {ragfallback-2.0.1 → ragfallback-2.0.2}/setup.py +1 -1
- {ragfallback-2.0.1 → ragfallback-2.0.2}/INSTALL_AND_RUN.md +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/LICENSE +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/MANIFEST.in +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/README.md +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/_kb_common.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/chroma_real_kb_demo.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/financial_risk_analysis.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/legal_document_analysis.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/medical_research_synthesis.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/production_reliability_example.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/qdrant_local_demo.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/real_data_demo.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc10_metadata_sanitizer.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc1_retrieval_health.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc2_embedding_guard.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc3_chunk_quality.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc4_context_window.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc5_hybrid_failover.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc6_adaptive_rag.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc6_multi_hop_demo.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc7_rag_evaluator.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc8_context_stitcher.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/examples/uc9_embedding_probe.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/pytest.ini +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/core/__init__.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/core/adaptive_retriever.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/diagnostics/__init__.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/diagnostics/chunking.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/diagnostics/context_stitcher.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/diagnostics/context_window.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/diagnostics/embedding_guard.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/diagnostics/embedding_probe.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/diagnostics/embedding_validator.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/diagnostics/retrieval_health.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/diagnostics/schema_sanitizer.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/diagnostics/stale_index.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/evaluation/__init__.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/evaluation/rag_evaluator.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/exceptions.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/py.typed +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/retrieval/__init__.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/retrieval/failover.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/retrieval/rerank_guard.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/retrieval/smart_hybrid.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/retrieval/wrappers.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/strategies/__init__.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/strategies/base.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/strategies/multi_hop.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/strategies/query_variations.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/tracking/__init__.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/tracking/cost_tracker.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/tracking/metrics.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/utils/__init__.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/utils/confidence_scorer.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/utils/embedding_factory.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/utils/env.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/utils/llm_factory.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback/utils/vector_store_factory.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback.egg-info/SOURCES.txt +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback.egg-info/dependency_links.txt +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback.egg-info/requires.txt +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/ragfallback.egg-info/top_level.txt +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/requirements-dev.txt +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/setup.cfg +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/__init__.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/conftest.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/integration/__init__.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/integration/test_adaptive_workflow.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/integration/test_chroma_pipeline.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/unit/__init__.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/unit/test_adaptive_multi_hop_bridge.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/unit/test_confidence_scorer.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/unit/test_cost_tracker.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/unit/test_diagnostics.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/unit/test_hybrid_retrieval.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/unit/test_metrics.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/unit/test_multi_hop.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/unit/test_query_variations.py +0 -0
- {ragfallback-2.0.1 → ragfallback-2.0.2}/tests/unit/test_retrieval.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragfallback
|
|
3
|
-
Version: 2.0.
|
|
4
|
-
Summary: RAG
|
|
3
|
+
Version: 2.0.2
|
|
4
|
+
Summary: Prevents silent RAG failures — chunk quality, retrieval fallback, adaptive querying, and answer evaluation in one library.
|
|
5
5
|
Home-page: https://github.com/irfanalidv/ragfallback
|
|
6
6
|
Author: Irfan Ali
|
|
7
7
|
Author-email: Irfan Ali <irfanali29@hotmail.com>
|
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ragfallback"
|
|
7
|
-
version = "2.0.
|
|
8
|
-
description = "RAG
|
|
7
|
+
version = "2.0.2"
|
|
8
|
+
description = "Prevents silent RAG failures — chunk quality, retrieval fallback, adaptive querying, and answer evaluation in one library."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
11
11
|
license = "MIT"
|
|
@@ -9,7 +9,7 @@ This module exposes a small curated shortcut only (see ``__all__``).
|
|
|
9
9
|
|
|
10
10
|
from __future__ import annotations
|
|
11
11
|
|
|
12
|
-
__version__ = "2.0.
|
|
12
|
+
__version__ = "2.0.2"
|
|
13
13
|
__author__ = "Irfan Ali"
|
|
14
14
|
|
|
15
15
|
from ragfallback.core.adaptive_retriever import AdaptiveRAGRetriever, QueryResult
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ragfallback
|
|
3
|
-
Version: 2.0.
|
|
4
|
-
Summary: RAG
|
|
3
|
+
Version: 2.0.2
|
|
4
|
+
Summary: Prevents silent RAG failures — chunk quality, retrieval fallback, adaptive querying, and answer evaluation in one library.
|
|
5
5
|
Home-page: https://github.com/irfanalidv/ragfallback
|
|
6
6
|
Author: Irfan Ali
|
|
7
7
|
Author-email: Irfan Ali <irfanali29@hotmail.com>
|
|
@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
6
6
|
|
|
7
7
|
setup(
|
|
8
8
|
name="ragfallback",
|
|
9
|
-
version="2.0.
|
|
9
|
+
version="2.0.2",
|
|
10
10
|
author="Irfan Ali",
|
|
11
11
|
author_email="irfanali29@hotmail.com",
|
|
12
12
|
description="ragfallback — reliability layers for RAG: diagnostics, fallbacks, evaluation",
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|