Async invoke with automatic key switching on rate-limit.
(self, prompt: str)
| 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.""" |
| 439 | return await self._ainvoke_with_retry(prompt) |
| 440 | |
| 441 | # -- Internal ------------------------------------------------------------- |
| 442 |
no test coverage detected