(mut self, hash: [u8; 32])
| 514 | /// Set the prompt hash (Blake3, 32 bytes). |
| 515 | #[must_use] |
| 516 | pub fn prompt_hash(mut self, hash: [u8; 32]) -> Self { |
| 517 | self.prompt_hash = Some(hash); |
| 518 | self |
| 519 | } |
| 520 | |
| 521 | /// Compute and set the prompt hash from the full prompt text. |
| 522 | #[must_use] |
no outgoing calls