fix: services/__init__.py with proper exports for clean imports
Browse files
backend/app/services/__init__.py
CHANGED
|
@@ -1 +1,27 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
TestGenius AI — Services Package
|
| 3 |
+
=================================
|
| 4 |
+
Core services for test generation, analysis, and LLM interaction.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
from app.services.llm_provider import generate_with_llm, get_provider_info, get_usage_stats
|
| 8 |
+
from app.services.novelty_features import (
|
| 9 |
+
analyze_code_complexity,
|
| 10 |
+
detect_coverage_gaps,
|
| 11 |
+
score_test_quality,
|
| 12 |
+
suggest_mutations,
|
| 13 |
+
execute_mutations,
|
| 14 |
+
scan_api_security,
|
| 15 |
+
)
|
| 16 |
+
|
| 17 |
+
__all__ = [
|
| 18 |
+
"generate_with_llm",
|
| 19 |
+
"get_provider_info",
|
| 20 |
+
"get_usage_stats",
|
| 21 |
+
"analyze_code_complexity",
|
| 22 |
+
"detect_coverage_gaps",
|
| 23 |
+
"score_test_quality",
|
| 24 |
+
"suggest_mutations",
|
| 25 |
+
"execute_mutations",
|
| 26 |
+
"scan_api_security",
|
| 27 |
+
]
|