Check if the LLM client is properly configured and available. Returns: True if the client can be used, False otherwise.
(self)
| 40 | |
| 41 | @abstractmethod |
| 42 | def is_available(self) -> bool: |
| 43 | """ |
| 44 | Check if the LLM client is properly configured and available. |
| 45 | |
| 46 | Returns: |
| 47 | True if the client can be used, False otherwise. |
| 48 | """ |
| 49 | pass |
| 50 | |
| 51 | @abstractmethod |
| 52 | def chat( |