(&self)
| 786 | } |
| 787 | |
| 788 | pub fn current_profile(&self) -> Option<&str> { |
| 789 | if let Some(cm) = self.context_manager.as_ref() { |
| 790 | Some(cm.current_profile.as_str()) |
| 791 | } else { |
| 792 | None |
| 793 | } |
| 794 | } |
| 795 | |
| 796 | /// Returns pairs of user and assistant messages to include as context in the message history |
| 797 | /// including both summaries and context files if available, and the dropped context files. |
no test coverage detected