Check if feedback can still be submitted for a request.
(self, request_id: str)
| 169 | ) |
| 170 | |
| 171 | def has_pending(self, request_id: str) -> bool: |
| 172 | """Check if feedback can still be submitted for a request.""" |
| 173 | return request_id in self._buffer |
| 174 | |
| 175 | def rollback(self) -> bool: |
| 176 | """Reset to base model, discard online weights.""" |
no outgoing calls