Synchronous invoke with automatic key switching on rate-limit.
(self, prompt: str)
| 431 | # -- Public API ----------------------------------------------------------- |
| 432 | |
| 433 | def invoke(self, prompt: str) -> object: |
| 434 | """Synchronous invoke with automatic key switching on rate-limit.""" |
| 435 | return self._invoke_with_retry(prompt) |
| 436 | |
| 437 | async def ainvoke(self, prompt: str) -> object: |
| 438 | """Async invoke with automatic key switching on rate-limit.""" |
no test coverage detected