25 lines
820 B
Python
25 lines
820 B
Python
from typing import List, Dict, Any, Optional
|
|
|
|
class UsageLimitExceededError(Exception):
|
|
def __init__(self, message: str):
|
|
super().__init__(message)
|
|
|
|
class BadRequestError(Exception):
|
|
def __init__(self, message: str):
|
|
super().__init__(message)
|
|
|
|
class ForbiddenError(Exception):
|
|
def __init__(self, message: str):
|
|
super().__init__(message)
|
|
|
|
class InvalidAPIKeyError(Exception):
|
|
def __init__(self, message: str):
|
|
super().__init__(message)
|
|
|
|
class TimeoutError(Exception):
|
|
def __init__(self, timeout: int):
|
|
super().__init__(f"Request timed out after {timeout} seconds.")
|
|
|
|
class MissingAPIKeyError(Exception):
|
|
def __init__(self):
|
|
super().__init__("No API key provided. Please provide the api_key attribute or set the TAVILY_API_KEY environment variable.") |