Set the AI vendor and model.
(&mut self, vendor: impl Into<String>, model: impl Into<String>)
| 274 | |
| 275 | /// Set the AI vendor and model. |
| 276 | pub fn set_model_info(&mut self, vendor: impl Into<String>, model: impl Into<String>) { |
| 277 | self.agent_vendor = vendor.into(); |
| 278 | self.model = model.into(); |
| 279 | } |
| 280 | |
| 281 | /// Set the parent view name (the view that was current when this session started). |
| 282 | /// |
no outgoing calls