ragcheck-cli 0.2.7__tar.gz → 0.2.8__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.
- {ragcheck_cli-0.2.7/ragcheck_cli.egg-info → ragcheck_cli-0.2.8}/PKG-INFO +1 -1
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/pyproject.toml +1 -1
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/__init__.py +1 -1
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/core/progress.py +3 -3
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8/ragcheck_cli.egg-info}/PKG-INFO +1 -1
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/CHANGELOG.md +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/LICENSE +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/MANIFEST.in +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/README.md +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/docs/ARCHITECTURE.md +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/examples/chunk_demo.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/examples/classifier_demo.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/examples/demo.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/examples/embed_demo.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/examples/full_pipeline_demo.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/examples/qa_demo.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/examples/report_demo.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/__main__.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/analyzers/__init__.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/analyzers/chunkers.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/analyzers/failure_classifier.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/analyzers/recommender.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/cli.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/core/__init__.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/core/config.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/core/config_loader.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/core/document_loader.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/core/embeddings.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/core/vector_store.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/reports/__init__.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/reports/chunk_visualizer.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/reports/export.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/reports/generator.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/reports/html_report.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/testers/__init__.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/testers/auto_qa.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck/testers/retrieval_tester.py +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck_cli.egg-info/SOURCES.txt +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck_cli.egg-info/dependency_links.txt +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck_cli.egg-info/entry_points.txt +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck_cli.egg-info/requires.txt +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/ragcheck_cli.egg-info/top_level.txt +0 -0
- {ragcheck_cli-0.2.7 → ragcheck_cli-0.2.8}/setup.cfg +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
from rich.console import Console
|
|
4
4
|
from rich.progress import (
|
|
5
5
|
BarColumn,
|
|
6
|
-
Progress,
|
|
6
|
+
Progress as RichProgress,
|
|
7
7
|
SpinnerColumn,
|
|
8
8
|
TextColumn,
|
|
9
9
|
TimeElapsedColumn,
|
|
@@ -13,9 +13,9 @@ from rich.progress import (
|
|
|
13
13
|
console = Console()
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
def get_progress() ->
|
|
16
|
+
def get_progress() -> RichProgress:
|
|
17
17
|
"""Get a pre-configured Rich Progress instance."""
|
|
18
|
-
return
|
|
18
|
+
return RichProgress(
|
|
19
19
|
SpinnerColumn(),
|
|
20
20
|
TextColumn("[progress.description]{task.description}"),
|
|
21
21
|
BarColumn(),
|
|
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
|