Set the agent style explicitly.
(mut self, style: AgentStyle)
| 552 | |
| 553 | /// Set the agent style explicitly. |
| 554 | pub fn with_style(mut self, style: AgentStyle) -> Self { |
| 555 | self.style = Some(style); |
| 556 | self |
| 557 | } |
| 558 | |
| 559 | /// Set the role/identity. |
| 560 | pub fn with_role(mut self, role: impl Into<String>) -> Self { |
no outgoing calls