diff --git a/docs/sandbox/guide.md b/docs/sandbox/guide.md index 2f13bdf469..a5a2979daf 100644 --- a/docs/sandbox/guide.md +++ b/docs/sandbox/guide.md @@ -481,6 +481,8 @@ These options only matter when the runner is creating a fresh sandbox session: `concurrency_limits` controls how much sandbox materialization work can run in parallel. Use `SandboxConcurrencyLimits(manifest_entries=..., local_dir_files=...)` when large manifests or local directory copies need tighter resource control. Set either value to `None` to disable that specific limit. +`archive_limits` controls SDK-side resource checks for archive extraction. Set `archive_limits=SandboxArchiveLimits()` to enable the SDK default thresholds, or pass explicit values such as `SandboxArchiveLimits(max_input_bytes=..., max_extracted_bytes=..., max_members=...)` when archives need tighter resource control. Leave `archive_limits=None` to keep the default behavior with no SDK archive resource limits, or set an individual field to `None` to disable only that limit. + A few implications are worth keeping in mind: - Fresh sessions: `manifest=` and `snapshot=` only apply when the runner is creating a fresh sandbox session.