Set custom response style.
(mut self, style: impl Into<String>)
| 570 | |
| 571 | /// Set custom response style. |
| 572 | pub fn with_response_style(mut self, style: impl Into<String>) -> Self { |
| 573 | self.response_style = Some(style.into()); |
| 574 | self |
| 575 | } |
| 576 | |
| 577 | /// Set extra instructions. |
| 578 | pub fn with_extra(mut self, extra: impl Into<String>) -> Self { |
no outgoing calls