File size: 173 Bytes
0a7f9b4
 
 
 
 
 
 
1
2
3
4
5
6
7
8
"""Custom exception for LLM configuration errors."""


class LLMConfigurationError(ValueError):
    """Raised when the LLM service is not configured correctly."""

    pass