Set the human-readable agent display name.
(mut self, name: impl Into<String>)
| 72 | |
| 73 | /// Set the human-readable agent display name. |
| 74 | pub fn agent_display_name(mut self, name: impl Into<String>) -> Self { |
| 75 | self.agent_display_name = name.into(); |
| 76 | self |
| 77 | } |
| 78 | |
| 79 | /// Set the AI vendor identifier. |
| 80 | pub fn agent_vendor(mut self, vendor: impl Into<String>) -> Self { |