File size: 348 Bytes
e062359 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | from ..._exceptions import AnthropicError
INSTRUCTIONS = """
Anthropic error: missing required dependency `{library}`.
$ pip install anthropic[{extra}]
"""
class MissingDependencyError(AnthropicError):
def __init__(self, *, library: str, extra: str) -> None:
super().__init__(INSTRUCTIONS.format(library=library, extra=extra))
|