(text)
| 1261 | } |
| 1262 | |
| 1263 | function partialFunctionCallsPrefixLength(text) { |
| 1264 | const lit = '<function_calls'; |
| 1265 | const lower = String(text || '').toLowerCase(); |
| 1266 | const max = Math.min(lit.length - 1, lower.length); |
| 1267 | for (let n = max; n > 0; n--) { |
| 1268 | if (lower.endsWith(lit.slice(0, n))) return n; |
| 1269 | } |
| 1270 | return 0; |
| 1271 | } |
| 1272 | |
| 1273 | // ─── Inject caller's tool history as additional_steps ─────────────── |
| 1274 | // |