(self, *args, **kwargs)
| 582 | return merged_cache |
| 583 | |
| 584 | def generate_with_prompt_cache(self, *args, **kwargs) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]: |
| 585 | return next_and_close(self._generate_with_prompt_cache(*args, streaming=False, **kwargs)) |
| 586 | |
| 587 | def generate_with_prompt_cache_streaming( |
| 588 | self, *args, **kwargs |
nothing calls this directly
no test coverage detected