(self, max_ngram_size: int = 2, num_pred_tokens: int = 10)
| 1207 | |
| 1208 | class PromptLookupDecoding(DraftProvider): |
| 1209 | def __init__(self, max_ngram_size: int = 2, num_pred_tokens: int = 10) -> None: |
| 1210 | self._max_ngram_size = max_ngram_size |
| 1211 | self._num_pred_tokens = num_pred_tokens |
| 1212 | |
| 1213 | def draft( |
| 1214 | self, |
nothing calls this directly
no outgoing calls
no test coverage detected