feat(grid-agent): isolate conversation memory (#122)
Some checks failed
CI / rust-skia (Rust only) (push) Successful in 2m48s
CI / required (push) Failing after 2m42s

This commit is contained in:
2026-08-17 22:18:24 +00:00
parent 3553c83ffa
commit e3ed39471b
10 changed files with 2173 additions and 5 deletions

View File

@@ -32,5 +32,16 @@
"stable_reset_seconds": 120,
"jitter_basis_points": 2000,
"offline_work_capacity": 128
},
"conversation": {
"persistence_enabled": false,
"max_active_sessions": 512,
"max_turns_per_session": 64,
"max_session_bytes": 262144,
"max_total_bytes": 8388608,
"max_tool_results_per_session": 16,
"max_tool_result_bytes": 16384,
"max_persisted_bytes": 16777216,
"max_summary_bytes": 8192
}
}