(self, sid: str)
| 215 | raise ValueError(f"Sequence {sid} not found") |
| 216 | |
| 217 | def in_decoding(self, sid: str) -> bool: |
| 218 | return sid in self.decoding_seqs |
| 219 | |
| 220 | def in_prefilling(self, sid: str) -> bool: |
| 221 | return sid in self.prefilling_seqs |
no outgoing calls
no test coverage detected