Check the Api key is valid or not
| 8 | |
| 9 | |
| 10 | class ApiKey(ABC): |
| 11 | """Check the Api key is valid or not""" |
| 12 | query = 'This is a test.' |
| 13 | |
| 14 | @classmethod |
| 15 | @abstractmethod |
| 16 | def is_valid(cls): |
| 17 | pass |
| 18 | |
| 19 | |
| 20 | class OpenAiAPI(ApiKey): |
nothing calls this directly
no outgoing calls
no test coverage detected