main
 1from .._exceptions import OpenAIError
 2
 3INSTRUCTIONS = """
 4
 5OpenAI error:
 6
 7    missing `{library}`
 8
 9This feature requires additional dependencies:
10
11    $ pip install openai[{extra}]
12
13"""
14
15
16def format_instructions(*, library: str, extra: str) -> str:
17    return INSTRUCTIONS.format(library=library, extra=extra)
18
19
20class MissingDependencyError(OpenAIError):
21    pass