()
| 247 | let offset = 0 |
| 248 | |
| 249 | const push = () => { |
| 250 | if (current.length) { |
| 251 | batches.push({ batch: current, offset }) |
| 252 | offset += current.length |
| 253 | current = [] |
| 254 | currentTokens = 0 |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | for (const raw of inputs) { |
| 259 | const text = |
no test coverage detected