Sukanth07's picture
app ready
d7f9105
raw
history blame contribute delete
330 Bytes
class ChatbotException(Exception):
"""Base exception for chatbot-related errors."""
pass
class LLMLoadingError(ChatbotException):
"""Exception raised for issues while loading the LLM."""
pass
class ResponseGenerationError(ChatbotException):
"""Exception raised for errors in response generation."""
pass