(self, completion: Completion)
| 14192 | return made_progress |
| 14193 | |
| 14194 | def draft_input_ids(self, completion: Completion) -> np.ndarray: |
| 14195 | return np.array( |
| 14196 | [*completion.prompt_tokens, *completion.completion_tokens], |
| 14197 | dtype=np.intc, |
| 14198 | ) |
| 14199 | |
| 14200 | def process_sampled_draft_batch( |
| 14201 | self, |
no outgoing calls
no test coverage detected