| 770 | tensors = bridge.import_update(manifest) |
| 771 | |
| 772 | class FailingReloadEngine: |
| 773 | def reload_weights(self, *, weights_iterator, is_checkpoint_format): |
| 774 | assert weights_iterator |
| 775 | assert is_checkpoint_format is True |
| 776 | raise RuntimeError("reload failed") |
| 777 | |
| 778 | adapter = VLLMInProcessWeightReloadAdapter( |
| 779 | FailingReloadEngine(), |
no outgoing calls