Enable auto-save after each `send()` call
(mut self, enabled: bool)
| 367 | |
| 368 | /// Enable auto-save after each `send()` call |
| 369 | pub fn with_auto_save(mut self, enabled: bool) -> Self { |
| 370 | self.auto_save = enabled; |
| 371 | self |
| 372 | } |
| 373 | |
| 374 | /// Set artifact retention limits for this session. |
| 375 | pub fn with_artifact_store_limits(mut self, limits: crate::tools::ArtifactStoreLimits) -> Self { |
no outgoing calls