Set the AI vendor and model.
(&mut self, vendor: impl Into<String>, model: impl Into<String>)
| 246 | |
| 247 | /// Set the AI vendor and model. |
| 248 | pub fn set_model_info(&mut self, vendor: impl Into<String>, model: impl Into<String>) { |
| 249 | self.agent_vendor = vendor.into(); |
| 250 | self.model = model.into(); |
| 251 | } |
| 252 | |
| 253 | /// Set the parent view name (the view that was current when this session started). |
| 254 | /// |
no outgoing calls