(&self, text: &str)
| 68 | } |
| 69 | |
| 70 | fn sanitize_final_text(&self, text: &str) -> String { |
| 71 | if let Some(ref sp) = self.config.security_provider { |
| 72 | sp.sanitize_output(text) |
| 73 | } else { |
| 74 | text.to_string() |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | fn log_execution_completed(&self, state: &ExecutionLoopState, turn: usize) { |
| 79 | tracing::info!( |
no test coverage detected