@@ -111,16 +111,17 @@ AGENTA_RUNNER_DEFAULT_SANDBOX_PROVIDER=local
111111# 5 min per tool call.
112112# AGENTA_RUNNER_TOOL_CALL_TIMEOUT_MS=300000
113113
114- # --- Session history: last-message-only turns (all four default off) ---
114+ # --- Session history: last-message-only turns ---
115115# The client sends only the newest user message and the runner rebuilds the earlier turns
116116# from the durable session record log, which keeps requests and traces small on a long
117- # conversation. The first two must be flipped together: with the web flag on and the runner
118- # flag off, a turn arrives with no history at all.
119- # AGENTA_SESSIONS_RECONSTRUCT=true
120- # NEXT_PUBLIC_SESSIONS_LAST_MESSAGE_ONLY=true
121- # Records become the only copy of the conversation, so make writing them durable and keep
122- # the structure of a record whose body exceeds the API size cap.
123- # AGENTA_RECORDS_DURABLE=true
117+ # conversation. The three flags below default ON (absent or empty means on); set the
118+ # literal "false" to disable. Disable the first two together: with the web flag on and
119+ # the runner flag off, a turn arrives with no history at all.
120+ # AGENTA_SESSIONS_RECONSTRUCT=false
121+ # NEXT_PUBLIC_SESSIONS_LAST_MESSAGE_ONLY=false
122+ # AGENTA_RECORDS_DURABLE=false
123+ # Smart truncation preserves the structure of a record whose body exceeds the API size
124+ # cap (higher-fidelity reconstruction). Still opt-in, default off.
124125# AGENTA_RECORDS_SMART_TRUNCATION=true
125126
126127# ================================================================== #
0 commit comments