Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autoresearch/prefill/program.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ must be deployed outside this supervisor. Cold benchmarks are explicit,
separate invocations of `scripts/benchmark_prefill_architecture.py`.

Prefill budgets are hard admission limits, never truncation instructions.
Strategy input must fit 4096 tokens by carrying the complete active leaf
Strategy input must fit 8192 tokens by carrying the complete active leaf
ancestry and its exact experiment records. Generator and Critic inputs must fit
6144 tokens; the Critic always receives the complete current Generator output.
If any complete semantic unit exceeds its budget, reject it before remote
Expand Down
4 changes: 2 additions & 2 deletions autoresearch/prefill/supervisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ def propose_candidate(
current: dict,
results_text: str,
ledger: dict,
max_prefill_tokens: int = 4096,
max_prefill_tokens: int = 8192,
) -> dict:
from kakeya import Client
from transformers import AutoTokenizer
Expand Down Expand Up @@ -1087,7 +1087,7 @@ def main() -> int:
parser.add_argument(
"--strategy-max-prefill-tokens",
type=int,
default=4096,
default=8192,
)
parser.add_argument(
"--tokenizer-id",
Expand Down
Loading