(mut self, name: impl Into<String>)
| 458 | /// Set the human-readable agent display name. |
| 459 | #[must_use] |
| 460 | pub fn agent_display_name(mut self, name: impl Into<String>) -> Self { |
| 461 | self.agent_display_name = Some(name.into()); |
| 462 | self |
| 463 | } |
| 464 | |
| 465 | /// Set the turn number (1-indexed). |
| 466 | #[must_use] |
no outgoing calls