Set the human-readable agent display name.
(mut self, name: impl Into<String>)
| 97 | |
| 98 | /// Set the human-readable agent display name. |
| 99 | pub fn agent_display_name(mut self, name: impl Into<String>) -> Self { |
| 100 | self.agent_display_name = name.into(); |
| 101 | self |
| 102 | } |
| 103 | |
| 104 | /// Set the AI vendor identifier. |
| 105 | pub fn agent_vendor(mut self, vendor: impl Into<String>) -> Self { |
no outgoing calls