| 733 | calls = [] |
| 734 | |
| 735 | class FakeReloadEngine: |
| 736 | def reload_weights(self, *, weights_iterator, is_checkpoint_format): |
| 737 | calls.append((weights_iterator, is_checkpoint_format)) |
| 738 | |
| 739 | adapter = VLLMInProcessWeightReloadAdapter( |
| 740 | FakeReloadEngine(), |
no outgoing calls