Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
"""Compaction policy matrix.
Each policy is a name -> spec mapping. A spec has:
ctor: extra kwargs for ContextCompressor(...)
attrs: attribute overrides applied after construction (lets us pin
tail_token_budget and other derived values without touching the
class)
The runner constructs one compressor per policy and calls
compress(force=True) with the transcript's estimated tokens.
"""
from __future__ import annotations
from typing import Any, Dict
# Window we evaluate against (fable-5 class model).
EVAL_MODEL = "anthropic/claude-fable-5"
EVAL_WINDOW = 1_000_000
POLICIES: Dict[str, Dict[str, Any]] = {
# Shipping behavior, untouched.
"current": {
"ctor": {},
"attrs": {},
},
# Proposed: tail = max(10K, 0.025% ... interpreted as 2.5% of window)
# capped hard at 25K on a 1M model. protect_last_n stays for message-count
# floor semantics.
"tail25k": {
"ctor": {},
"attrs": {"tail_token_budget": 25_000},
},
# Hard floor variant: minimum viable tail.
"tail10k": {
"ctor": {},
"attrs": {"tail_token_budget": 10_000},
},
# Codex posture: nearly no tail; summary carries everything.
"codex_style": {
"ctor": {"protect_last_n": 3},
"attrs": {"tail_token_budget": 2_000},
},
# Compaction-v2 lean mode: clamped 2.5% tail + tail tool demotion +
# verbatim user messages in summary + session_search recovery pointers.
"lean": {
"ctor": {"tail_mode": "lean"},
"attrs": {"_session_id": "eval-session"},
},
}
def apply_policy(compressor, spec: Dict[str, Any]):
for key, value in (spec.get("attrs") or {}).items():
setattr(compressor, key, value)
return compressor