Skip to content

Commit 45c95a7

Browse files
committed
Measure migrator budgets off the final scoped prompt
1 parent 72c5be2 commit 45c95a7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

‎src/agent/prompt-sizes.test.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ const CHAR_BUDGET: Record<DirectorId, number> = {
3434
testsmith: 16200,
3535
tester: 13900,
3636
// CL-7671 scope-honesty sentences grew migrator past the 12300-char
37-
// placeholder: measured-max + 2000 allowance, ceiling to 100.
38-
migrator: 12800,
37+
// placeholder: measured-max (11202) + 2000 allowance, ceiling to 100.
38+
migrator: 13300,
3939
};
4040

4141
const BYTE_BUDGET: Record<DirectorId, number> = {
@@ -58,8 +58,8 @@ const BYTE_BUDGET: Record<DirectorId, number> = {
5858
testsmith: 17200,
5959
tester: 15000,
6060
// CL-7671 scope-honesty sentences grew migrator past the 13400-byte
61-
// placeholder: measured-max + 3000 allowance, ceiling to 100.
62-
migrator: 13900,
61+
// placeholder: measured-max (11258) + 3000 allowance, ceiling to 100.
62+
migrator: 14300,
6363
};
6464

6565
function budgetMessage(

0 commit comments

Comments
 (0)