- Deleted .env.example file as it is no longer needed. - Added .gitignore to manage ignored files and directories. - Introduced CLAUDE.md for AI provider integration documentation. - Created dev.sh for development setup and scripts. - Updated Dockerfile and Dockerfile.production for improved build processes. - Added multiple test files and directories for comprehensive testing. - Introduced new utility and service files for enhanced functionality. - Organized codebase with new directories and files for better maintainability.
25 lines
740 B
Python
25 lines
740 B
Python
"""
|
|
Quote Processing Services Package
|
|
|
|
Contains all quote analysis and processing services including multi-dimensional
|
|
scoring, explanation generation, and analysis transparency features.
|
|
"""
|
|
|
|
from .quote_analyzer import QuoteAnalysis, QuoteAnalyzer, QuoteScores
|
|
from .quote_explanation import (ExplanationDepth, QuoteAnalysisExplanation,
|
|
QuoteExplanationService, ScoreExplanation)
|
|
from .quote_explanation_helpers import QuoteExplanationHelpers
|
|
|
|
__all__ = [
|
|
# Quote Analysis
|
|
"QuoteAnalyzer",
|
|
"QuoteScores",
|
|
"QuoteAnalysis",
|
|
# Quote Explanation
|
|
"QuoteExplanationService",
|
|
"ExplanationDepth",
|
|
"ScoreExplanation",
|
|
"QuoteAnalysisExplanation",
|
|
"QuoteExplanationHelpers",
|
|
]
|