Set custom guidelines.
(mut self, guidelines: impl Into<String>)
| 564 | |
| 565 | /// Set custom guidelines. |
| 566 | pub fn with_guidelines(mut self, guidelines: impl Into<String>) -> Self { |
| 567 | self.guidelines = Some(guidelines.into()); |
| 568 | self |
| 569 | } |
| 570 | |
| 571 | /// Set custom response style. |
| 572 | pub fn with_response_style(mut self, style: impl Into<String>) -> Self { |
no outgoing calls