(mut self, summary: impl Into<String>)
| 507 | /// Set the prompt summary (first ~200 chars). |
| 508 | #[must_use] |
| 509 | pub fn prompt_summary(mut self, summary: impl Into<String>) -> Self { |
| 510 | self.prompt_summary = Some(summary.into()); |
| 511 | self |
| 512 | } |
| 513 | |
| 514 | /// Set the prompt hash (Blake3, 32 bytes). |
| 515 | #[must_use] |
no outgoing calls