File size: 452 Bytes
148b631 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""
Code Completion Validation Suite
Validates RippleGPT's ability to understand hierarchical code structures
using the bigcode/the-stack-smol dataset.
"""
from .test_cases import get_all_test_cases, get_tests_by_category, TestCase
from .metrics import TestResult, ValidationReport, generate_report
__all__ = [
'get_all_test_cases',
'get_tests_by_category',
'TestCase',
'TestResult',
'ValidationReport',
'generate_report'
]
|