GotoUsuke's picture
Upload folder using huggingface_hub
db4a26f verified
raw
history blame
471 Bytes
class DuckDuckGoSearchException(Exception):
"""Base exception class for duckduckgo_search."""
class RatelimitException(DuckDuckGoSearchException):
"""Raised for rate limit exceeded errors during API requests."""
class TimeoutException(DuckDuckGoSearchException):
"""Raised for timeout errors during API requests."""
class ConversationLimitException(DuckDuckGoSearchException):
"""Raised for conversation limit during API requests to AI endpoint."""