(
&self,
_session_id: &str,
prompt: &str,
response: &str,
)
| 342 | } |
| 343 | |
| 344 | async fn on_turn_complete( |
| 345 | &self, |
| 346 | _session_id: &str, |
| 347 | prompt: &str, |
| 348 | response: &str, |
| 349 | ) -> anyhow::Result<()> { |
| 350 | self.memory.remember_success(prompt, &[], response).await |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | // ============================================================================ |
nothing calls this directly
no test coverage detected